SchemaTreeTraverser.modelGroup
Code IndexAdd Codota to your IDE (free)

Best code snippets using com.sun.xml.xsom.impl.util.SchemaTreeTraverser.modelGroup(Showing top 8 results out of 315)

origin: com.sun.xml.bind/jaxb-xjc

public void modelGroupDecl(XSModelGroupDecl decl) {
  SchemaTreeNode newNode = new SchemaTreeNode(MessageFormat.format(
      "Group name=\"{0}\"", new Object[]{decl.getName()}),
      decl.getLocator());
  this.currNode.add(newNode);
  this.currNode = newNode;
  modelGroup(decl.getModelGroup());
  this.currNode = (SchemaTreeNode) this.currNode.getParent();
}
origin: com.sun.xml.bind/jaxb-xjc

public void modelGroup(XSModelGroup group) {
  modelGroup(group, "");
}
origin: com.sun.xsom/xsom

public void modelGroupDecl(XSModelGroupDecl decl) {
  SchemaTreeNode newNode = new SchemaTreeNode(MessageFormat.format(
      "Group name=\"{0}\"", new Object[]{decl.getName()}),
      decl.getLocator());
  this.currNode.add(newNode);
  this.currNode = newNode;
  modelGroup(decl.getModelGroup());
  this.currNode = (SchemaTreeNode) this.currNode.getParent();
}
origin: com.sun.xml.bind/jaxb-osgi

public void modelGroupDecl(XSModelGroupDecl decl) {
  SchemaTreeNode newNode = new SchemaTreeNode(MessageFormat.format(
      "Group name=\"{0}\"", new Object[]{decl.getName()}),
      decl.getLocator());
  this.currNode.add(newNode);
  this.currNode = newNode;
  modelGroup(decl.getModelGroup());
  this.currNode = (SchemaTreeNode) this.currNode.getParent();
}
origin: org.glassfish.jaxb/xsom

public void modelGroupDecl(XSModelGroupDecl decl) {
  SchemaTreeNode newNode = new SchemaTreeNode(MessageFormat.format(
      "Group name=\"{0}\"", new Object[]{decl.getName()}),
      decl.getLocator());
  this.currNode.add(newNode);
  this.currNode = newNode;
  modelGroup(decl.getModelGroup());
  this.currNode = (SchemaTreeNode) this.currNode.getParent();
}
origin: com.sun.xsom/xsom

public void modelGroup(XSModelGroup group) {
  modelGroup(group, "");
}
origin: com.sun.xml.bind/jaxb-osgi

public void modelGroup(XSModelGroup group) {
  modelGroup(group, "");
}
origin: org.glassfish.jaxb/xsom

public void modelGroup(XSModelGroup group) {
  modelGroup(group, "");
}
com.sun.xml.xsom.impl.utilSchemaTreeTraversermodelGroup

Javadoc

Creates node for model group with additional attributes.

Popular methods of SchemaTreeTraverser

  • attGroupDecl
  • attributeDecl
  • attributeUse
  • complexType
  • dump
    Creates node for attribute declaration with additional attributes.
  • dumpComplexTypeAttribute
    Creates node for complex type.
  • dumpRef
    Creates node of attribute group decalration reference.
  • elementDecl
    Creates node for element declaration with additional attributes.
  • facet
  • modelGroupDecl
  • particle
  • schema
  • particle,
  • schema,
  • simpleType,
  • wildcard

Popular classes and methods

  • putExtra (Intent)
  • getSystemService (Context)
  • scheduleAtFixedRate (Timer)
    Schedules the specified task for repeated fixed-rate execution, beginning after the specified delay.
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • Thread (java.lang)
    A Thread is a concurrent unit of execution. It has its own call stack for methods being invoked, the
  • SocketException (java.net)
    This SocketException may be thrown during socket creation or setting options, and is the superclass
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul

For IntelliJ IDEA,
Android Studio or Eclipse

  • Codota IntelliJ IDEA pluginCodota Android Studio pluginCode IndexSign in
  • EnterpriseFAQAboutContact Us
  • Terms of usePrivacy policyCodeboxFind Usages
Add Codota to your IDE (free)