Tabnine Logo
MappingElementBase.getClassName
Code IndexAdd Tabnine to your IDE (free)

How to use
getClassName
method
in
org.jibx.binding.model.MappingElementBase

Best Java code snippets using org.jibx.binding.model.MappingElementBase.getClassName (Showing top 9 results out of 315)

origin: org.apache.axis2/axis2-jibx

private String mapQName(QName qname, Map complexTypeMap) throws RuntimeException {
  Object obj = complexTypeMap.get(qname);
  if (obj == null) {
    throw new RuntimeException("No mapping defined for element " + qname);
  }
  MappingElementBase mapping = (MappingElementBase)obj;
  String cname = mapping.getClassName();
  codeGenConfig.getTypeMapper().addTypeMappingName(qname, cname);
  return cname;
}
origin: apache/axis2-java

private String mapQName(QName qname, Map complexTypeMap) throws RuntimeException {
  Object obj = complexTypeMap.get(qname);
  if (obj == null) {
    throw new RuntimeException("No mapping defined for element " + qname);
  }
  MappingElementBase mapping = (MappingElementBase)obj;
  String cname = mapping.getClassName();
  codeGenConfig.getTypeMapper().addTypeMappingName(qname, cname);
  return cname;
}
origin: org.jibx/jibx-tools

String cname = mapping.getClassName();
if (mapping.isAbstract()) {
  QName qname = mapping.getTypeQName();
origin: apache/axis2-java

if (mappedclass == null) {
  MappingElementBase mapping = (MappingElementBase)complexTypeMap.get(tname);
  mappedclass = mapping.getClassName();
origin: apache/axis2-java

javatype = mapping.getClassName();
createtype = mapping.getCreateType();
if (createtype == null && mapping.isAbstract() &&
origin: org.apache.axis2/axis2-jibx

javatype = mapping.getClassName();
createtype = mapping.getCreateType();
if (createtype == null && mapping.isAbstract() &&
origin: org.apache.axis2/axis2-jibx

if (mappedclass == null) {
  MappingElementBase mapping = (MappingElementBase)complexTypeMap.get(tname);
  mappedclass = mapping.getClassName();
origin: org.jibx/jibx-tools

String cname = mapping.getClassName();
TypeData data = buildClassData(cname, false);
if (mapping.isAbstract()) {
origin: org.jibx/jibx-tools

info = m_locator.getClassInfo(detail.getMapping().getClassName());
org.jibx.binding.modelMappingElementBasegetClassName

Popular methods of MappingElementBase

  • getName
  • getTypeQName
  • isAbstract
  • getCreateType
  • getExtensionTypes
  • getUri
  • topChildIterator
  • addChild
  • addTopChild
  • getAttributeComponents
  • getContentComponents
  • getNamespace
  • getContentComponents,
  • getNamespace,
  • getTypeName,
  • setAbstract,
  • setClassName,
  • setCreateType,
  • setExtendsName,
  • setFactoryName,
  • setName

Popular in Java

  • Reactive rest calls using spring rest template
  • getResourceAsStream (ClassLoader)
  • findViewById (Activity)
  • getSharedPreferences (Context)
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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