Tabnine Logo
MappingElement.getTypeQName
Code IndexAdd Tabnine to your IDE (free)

How to use
getTypeQName
method
in
org.jibx.binding.model.MappingElement

Best Java code snippets using org.jibx.binding.model.MappingElement.getTypeQName (Showing top 3 results out of 315)

origin: org.apache.cxf/cxf-rt-databinding-jibx

  public boolean visit(MappingElement mapping) {
    org.jibx.runtime.QName qname = mapping.getTypeQName();
    if (qname != null) {
      types.put(qname, mapping);
    }
    String name = mapping.getName();
    if (name != null) {
      NamespaceElement ns = mapping.getNamespace();
      if (ns == null) {
        qname = new org.jibx.runtime.QName(holder.getElementDefaultNamespace(), name);
      } else {
        qname = new org.jibx.runtime.QName(mapping.getNamespace().getUri(), name);
      }
      elems.put(qname, mapping);
    }
    return false;
  }
};
origin: org.jibx/jibx-tools

QName tname = map.getTypeQName();
if (tname == null) {
  NamespaceElement dfltns = map.getDefinitions().getElementDefaultNamespace();
origin: org.jibx/jibx-tools

} else {
  MappingElement mapping = detail.getAbstractMapping();
  tname = mapping.getTypeQName();
  if (tname == null) {
    tname = getMappingQName(usetype, mapping);
org.jibx.binding.modelMappingElementgetTypeQName

Popular methods of MappingElement

  • getClassName
  • getName
  • getNamespace
  • <init>
  • childIterator
  • getContentComponents
  • getDefinitions
  • getExtendsMapping
  • isAbstract
  • setAbstract
  • setClassName
  • setCreateType
  • setClassName,
  • setCreateType,
  • setFactoryName,
  • setTypeQName

Popular in Java

  • Finding current android device location
  • setScale (BigDecimal)
  • putExtra (Intent)
  • getApplicationContext (Context)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • Notification (javax.management)
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • Top PhpStorm plugins
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