本文整理匯總了Java中com.sun.xml.xsom.visitor.XSSimpleTypeVisitor類的典型用法代碼示例。如果您正苦於以下問題:Java XSSimpleTypeVisitor類的具體用法?Java XSSimpleTypeVisitor怎麽用?Java XSSimpleTypeVisitor使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
XSSimpleTypeVisitor類屬於com.sun.xml.xsom.visitor包,在下文中一共展示了XSSimpleTypeVisitor類的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: simpleType
import com.sun.xml.xsom.visitor.XSSimpleTypeVisitor; //導入依賴的package包/類
public void simpleType(XSSimpleType type) {
String str = MessageFormat.format("Simple type {0}",
new Object[]{type.isLocal() ? "" : " name=\""
+ type.getName() + "\""});
SchemaTreeNode newNode = new SchemaTreeNode(str, type.getLocator());
this.currNode.add(newNode);
this.currNode = newNode;
type.visit((XSSimpleTypeVisitor) this);
this.currNode = (SchemaTreeNode) this.currNode.getParent();
}
示例2: simpleType
import com.sun.xml.xsom.visitor.XSSimpleTypeVisitor; //導入依賴的package包/類
public void simpleType( XSSimpleType type ) {
println(MessageFormat.format("<simpleType{0}>",
new Object[]{
type.isLocal()?"":" name=\""+type.getName()+'\"'
}));
indent++;
type.visit((XSSimpleTypeVisitor)this);
indent--;
println("</simpleType>");
}
示例3: simpleType
import com.sun.xml.xsom.visitor.XSSimpleTypeVisitor; //導入依賴的package包/類
public void simpleType( XSSimpleType type ) {
println(MessageFormat.format("<simpleType{0}>", type.isLocal()?"":" name=\""+type.getName()+'\"'));
indent++;
type.visit((XSSimpleTypeVisitor)this);
indent--;
println("</simpleType>");
}
示例4: visit
import com.sun.xml.xsom.visitor.XSSimpleTypeVisitor; //導入依賴的package包/類
public void visit( XSSimpleTypeVisitor visitor ) {
visitor.restrictionSimpleType(this);
}
示例5: visit
import com.sun.xml.xsom.visitor.XSSimpleTypeVisitor; //導入依賴的package包/類
public void visit( XSSimpleTypeVisitor visitor ) {
visitor.unionSimpleType(this);
}
示例6: visit
import com.sun.xml.xsom.visitor.XSSimpleTypeVisitor; //導入依賴的package包/類
public void visit( XSSimpleTypeVisitor visitor ) {
visitor.listSimpleType(this);
}
示例7: attributeDecl
import com.sun.xml.xsom.visitor.XSSimpleTypeVisitor; //導入依賴的package包/類
public void attributeDecl(XSAttributeDecl decl) {
decl.getType().visit((XSSimpleTypeVisitor) this);
}
示例8: visit
import com.sun.xml.xsom.visitor.XSSimpleTypeVisitor; //導入依賴的package包/類
void visit( XSSimpleTypeVisitor visitor );
示例9: visit
import com.sun.xml.xsom.visitor.XSSimpleTypeVisitor; //導入依賴的package包/類
public void visit( XSSimpleTypeVisitor visitor ) {visitor.restrictionSimpleType(this); }