本文整理汇总了Java中com.sun.xml.internal.bind.v2.schemagen.xmlschema.ComplexType类的典型用法代码示例。如果您正苦于以下问题:Java ComplexType类的具体用法?Java ComplexType怎么用?Java ComplexType使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ComplexType类属于com.sun.xml.internal.bind.v2.schemagen.xmlschema包,在下文中一共展示了ComplexType类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: handleMapProp
import com.sun.xml.internal.bind.v2.schemagen.xmlschema.ComplexType; //导入依赖的package包/类
/**
* Generate the proper schema fragment for the given map property into the
* specified schema compositor.
*
* @param mp the map property
*/
private Tree handleMapProp(final MapPropertyInfo<T,C> mp) {
return new Tree.Term() {
protected void write(ContentModelContainer parent, boolean isOptional, boolean repeated) {
QName ename = mp.getXmlName();
LocalElement e = parent.element();
elementFormDefault.writeForm(e,ename);
if(mp.isCollectionNillable())
e.nillable(true);
e = e.name(ename.getLocalPart());
writeOccurs(e,isOptional,repeated);
ComplexType p = e.complexType();
// TODO: entry, key, and value are always unqualified. that needs to be fixed, too.
// TODO: we need to generate the corresponding element declaration, if they are qualified
e = p.sequence().element();
e.name("entry").minOccurs(0).maxOccurs("unbounded");
ExplicitGroup seq = e.complexType().sequence();
writeKeyOrValue(seq, "key", mp.getKeyType());
writeKeyOrValue(seq, "value", mp.getValueType());
}
};
}
示例2: writeArray
import com.sun.xml.internal.bind.v2.schemagen.xmlschema.ComplexType; //导入依赖的package包/类
/**
* writes the schema definition for the given array class
*/
private void writeArray(ArrayInfo<T, C> a, Schema schema) {
ComplexType ct = schema.complexType().name(a.getTypeName().getLocalPart());
ct._final("#all");
LocalElement le = ct.sequence().element().name("item");
le.type(a.getItemType().getTypeName());
le.minOccurs(0).maxOccurs("unbounded");
le.nillable(true);
ct.commit();
}