congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
EISObjectPersistenceXMLProject.buildTypedField
Code IndexAdd Tabnine to your IDE (free)

How to use
buildTypedField
method
in
org.eclipse.persistence.eis.EISObjectPersistenceXMLProject

Best Java code snippets using org.eclipse.persistence.eis.EISObjectPersistenceXMLProject.buildTypedField (Showing top 3 results out of 315)

origin: org.eclipse.persistence/org.eclipse.persistence.core

protected ClassDescriptor buildInteractionArgumentDescriptor() {
  XMLDescriptor descriptor = new XMLDescriptor();
  descriptor.setJavaClass(InteractionArgument.class);
  descriptor.setDefaultRootElement("interaction-argument");
  XMLDirectMapping argumentNameMapping = new XMLDirectMapping();
  argumentNameMapping.setAttributeName("argumentName");
  argumentNameMapping.setGetMethodName("getArgumentName");
  argumentNameMapping.setSetMethodName("setArgumentName");
  argumentNameMapping.setXPath("@name");
  descriptor.addMapping(argumentNameMapping);
  XMLDirectMapping keyMapping = new XMLDirectMapping();
  keyMapping.setAttributeName("key");
  keyMapping.setGetMethodName("getKey");
  keyMapping.setSetMethodName("setKey");
  keyMapping.setXPath("@argument-name");
  descriptor.addMapping(keyMapping);
  XMLDirectMapping valueMapping = new XMLDirectMapping();
  valueMapping.setAttributeName("value");
  valueMapping.setGetMethodName("getValue");
  valueMapping.setSetMethodName("setValue");
  valueMapping.setField(buildTypedField(getPrimaryNamespaceXPath() + "argument-value/text()"));
  descriptor.addMapping(valueMapping);
  return descriptor;
}
origin: com.haulmont.thirdparty/eclipselink

protected ClassDescriptor buildInteractionArgumentDescriptor() {
  XMLDescriptor descriptor = new XMLDescriptor();
  descriptor.setJavaClass(InteractionArgument.class);
  descriptor.setDefaultRootElement("interaction-argument");
  XMLDirectMapping argumentNameMapping = new XMLDirectMapping();
  argumentNameMapping.setAttributeName("argumentName");
  argumentNameMapping.setGetMethodName("getArgumentName");
  argumentNameMapping.setSetMethodName("setArgumentName");
  argumentNameMapping.setXPath("@name");
  descriptor.addMapping(argumentNameMapping);
  XMLDirectMapping keyMapping = new XMLDirectMapping();
  keyMapping.setAttributeName("key");
  keyMapping.setGetMethodName("getKey");
  keyMapping.setSetMethodName("setKey");
  keyMapping.setXPath("@argument-name");
  descriptor.addMapping(keyMapping);
  XMLDirectMapping valueMapping = new XMLDirectMapping();
  valueMapping.setAttributeName("value");
  valueMapping.setGetMethodName("getValue");
  valueMapping.setSetMethodName("setValue");
  valueMapping.setField(buildTypedField(getPrimaryNamespaceXPath() + "argument-value/text()"));
  descriptor.addMapping(valueMapping);
  return descriptor;
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

protected ClassDescriptor buildInteractionArgumentDescriptor() {
  XMLDescriptor descriptor = new XMLDescriptor();
  descriptor.setJavaClass(InteractionArgument.class);
  descriptor.setDefaultRootElement("interaction-argument");
  XMLDirectMapping argumentNameMapping = new XMLDirectMapping();
  argumentNameMapping.setAttributeName("argumentName");
  argumentNameMapping.setGetMethodName("getArgumentName");
  argumentNameMapping.setSetMethodName("setArgumentName");
  argumentNameMapping.setXPath("@name");
  descriptor.addMapping(argumentNameMapping);
  XMLDirectMapping keyMapping = new XMLDirectMapping();
  keyMapping.setAttributeName("key");
  keyMapping.setGetMethodName("getKey");
  keyMapping.setSetMethodName("setKey");
  keyMapping.setXPath("@argument-name");
  descriptor.addMapping(keyMapping);
  XMLDirectMapping valueMapping = new XMLDirectMapping();
  valueMapping.setAttributeName("value");
  valueMapping.setGetMethodName("getValue");
  valueMapping.setSetMethodName("setValue");
  valueMapping.setField(buildTypedField(getPrimaryNamespaceXPath() + "argument-value/text()"));
  descriptor.addMapping(valueMapping);
  return descriptor;
}
org.eclipse.persistence.eisEISObjectPersistenceXMLProjectbuildTypedField

Popular methods of EISObjectPersistenceXMLProject

  • <init>
  • addDescriptor
  • buildEISCompositeCollectionMappingDescriptor
  • buildEISCompositeDirectCollectionMappingDescriptor
  • buildEISCompositeObjectMappingDescriptor
  • buildEISDescriptorDescriptor
  • buildEISDirectMappingDescriptor
  • buildEISLoginDescriptor
  • buildEISOneToManyMappingDescriptor
  • buildEISOneToOneMappingDescriptor
  • buildEISTransformationMappingDescriptor
  • buildInteractionArgumentDescriptor
  • buildEISTransformationMappingDescriptor,
  • buildInteractionArgumentDescriptor,
  • buildXMLInteractionDescriptor,
  • getPrimaryNamespace,
  • getPrimaryNamespaceXPath

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getSupportFragmentManager (FragmentActivity)
  • findViewById (Activity)
  • startActivity (Activity)
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now