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

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

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

origin: org.jibx/jibx-tools

/**
 * Constructor.
 * 
 * @param map mapping definition
 * @param haschild has child element(s) flag
 * @param hastext has child text(s) flag
 * @param base base mapping for schema type extension
 * @param tname name as type
 * @param oname name as element/group/attributeGroup
 */
public MappingDetail(MappingElementBase map, boolean haschild, boolean hastext, MappingElement base, QName tname,
  QName oname) {
  m_mapping = map;
  m_extensionBase = base;
  m_hasChild = haschild;
  m_hasText = hastext;
  m_hasAttribute = map.getAttributeComponents().size() > 0;
  m_typeName = tname;
  m_otherName = oname;
  if (map.isAbstract() && map.getTypeName() != null) {
    m_isType = true;
  } else if (!map.isAbstract()) {
    m_isElement = true;
  }
}

origin: org.jibx/jibx-tools

if (mapping.isAbstract()) {
  QName qname = mapping.getTypeQName();
  if (qname != null) {
origin: apache/axis2-java

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

javatype = mapping.getClassName();
createtype = mapping.getCreateType();
if (createtype == null && mapping.isAbstract() &&
  mapping.getExtensionTypes().isEmpty()) {
origin: org.jibx/jibx-tools

String cname = mapping.getClassName();
TypeData data = buildClassData(cname, false);
if (mapping.isAbstract()) {
  QName qname = mapping.getTypeQName();
  if (qname != null) {
origin: org.apache.axis2/axis2-jibx

if (mapping.isAbstract() && mapping.getTypeQName() != null) {
origin: apache/axis2-java

if (mapping.isAbstract() && mapping.getTypeQName() != null) {
origin: org.jibx/jibx-tools

} else {
  MappingElementBase ref = (MappingElementBase)struct.getEffectiveMapping();
  if (ref != null && ref.isAbstract()) {
origin: org.jibx/jibx-tools

if (mainmapping.isAbstract()) {
  hold.addTypeNameReference(uri, uri);
origin: org.jibx/jibx-tools

if (ref.isAbstract()) {
org.jibx.binding.modelMappingElementBaseisAbstract

Popular methods of MappingElementBase

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

Popular in Java

  • Running tasks concurrently on multiple threads
  • getApplicationContext (Context)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • findViewById (Activity)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • Menu (java.awt)
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • 14 Best Plugins for Eclipse
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