Tabnine Logo
SchemaBinding.setReplacePropertyRefs
Code IndexAdd Tabnine to your IDE (free)

How to use
setReplacePropertyRefs
method
in
org.jboss.xb.binding.sunday.unmarshalling.SchemaBinding

Best Java code snippets using org.jboss.xb.binding.sunday.unmarshalling.SchemaBinding.setReplacePropertyRefs (Showing top 5 results out of 315)

origin: org.jboss.kernel/jboss-spring-int

public static void init(SchemaBinding schemaBinding)
{
 // ignore XB property replacement
 schemaBinding.setReplacePropertyRefs(false);
 // init
 initDeployment(schemaBinding);
 initBean(schemaBinding);
 initAlias(schemaBinding);
 initImport(schemaBinding);
 initArtifacts(schemaBinding);
}
origin: org.jboss.microcontainer/jboss-container

public SchemaBinding init(SchemaBinding schema)
 schema.setReplacePropertyRefs(false);
origin: org.jboss.microcontainer/jboss-container

  public SchemaBinding init(SchemaBinding schema)
  {
   // ignore XB property replacement
   schema.setReplacePropertyRefs(false);

   // javabean binding
   TypeBinding beanType = schema.getType(javabeanTypeQName);
   beanType.setHandler(JavaBeanHandler.HANDLER);
   // bean has constructor
   beanType.pushInterceptor(constructorQName, ConstructorInterceptor.INTERCEPTOR);
   // bean has properties
   beanType.pushInterceptor(propertyQName, PropertyInterceptor.INTERCEPTOR);

   // constructor binding
   TypeBinding constructorType = schema.getType(constructorTypeQName);
   constructorType.setHandler(ConstructorHandler.HANDLER);
   // constructor has properties
   constructorType.pushInterceptor(propertyQName, PropertyInterceptor.INTERCEPTOR);

   // property binding
   TypeBinding propertyType = schema.getType(propertyTypeQName);
   propertyType.setHandler(PropertyHandler.HANDLER);

   return schema;
  }
}
origin: org.jboss.ws.native/jbossws-native-core

/**
* Creates and initializes an instance of SchemaBinding
*/
public SchemaBinding buildSchemaBinding(XSModel model, JavaWsdlMapping wsdlMapping)
{
 JBossEntityResolver resolver = new JBossWSEntityResolver(ClassLoaderProvider.getDefaultProvider().getServerJAXRPCIntegrationClassLoader());
 SchemaBinding schemaBinding = XsdBinder.bind(model, new DefaultSchemaResolver(resolver));
 schemaBinding.setIgnoreLowLine(false);
 schemaBinding.setIgnoreUnresolvedFieldOrClass(false);
 schemaBinding.setUnmarshalListsToArrays(true); // note: default jaxb2.0 is false!
 schemaBinding.setSimpleContentProperty("_value");
 schemaBinding.setUseNoArgCtorIfFound(true);
 schemaBinding.setReplacePropertyRefs(false);
 if (wsdlMapping != null)
 {
   bindSchemaToJava(schemaBinding, wsdlMapping);
 }
 return schemaBinding;
}
origin: jboss/jbossxb

schema.setReplacePropertyRefs(schemaBindings.isReplacePropertyRefs());
org.jboss.xb.binding.sunday.unmarshallingSchemaBindingsetReplacePropertyRefs

Popular methods of SchemaBinding

  • getType
  • addElement
  • addType
  • getElement
  • getElements
  • getPackageMetaData
  • setIgnoreUnresolvedFieldOrClass
    If a field is not found in the parent class to set child value on or a class an element is bound to
  • setPackageMetaData
  • <init>
  • addElementParticle
  • addGroup
  • getElementParticle
  • addGroup,
  • getElementParticle,
  • getElementParticles,
  • getSchemaResolver,
  • getSimpleContentProperty,
  • getTypes,
  • getXopMarshaller,
  • getXopUnmarshaller,
  • isIgnoreLowLine

Popular in Java

  • Running tasks concurrently on multiple threads
  • getSharedPreferences (Context)
  • setRequestProperty (URLConnection)
  • requestLocationUpdates (LocationManager)
  • Menu (java.awt)
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • BoxLayout (javax.swing)
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • 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