Searched refs:RawTypeSet (Results 1 - 11 of 11) sorted by relevance

/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DRawTypeSetBuilder.java46 import com.sun.tools.internal.xjc.reader.RawTypeSet;
61 * Builds {@link RawTypeSet} for XML Schema.
72 public static RawTypeSet build( XSParticle p, boolean optional ) {
80 return new RawTypeSet(rtsb.refs,mul);
90 private final Set<RawTypeSet.Ref> refs = new LinkedHashSet<RawTypeSet.Ref>();
98 * Gets the {@link RawTypeSet.Ref}s that were built.
100 public Set<RawTypeSet.Ref> getRefs() {
105 * Build up {@link #refs} and compute the total multiplicity of this {@link RawTypeSet.Ref} set.
151 public static final class WildcardRef extends RawTypeSet
[all...]
H A DExpressionParticleBinder.java32 import com.sun.tools.internal.xjc.reader.RawTypeSet;
100 RawTypeSet rts = new RawTypeSet(rtsb.getRefs(),m);
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/relaxng/
H A DRawTypeSetBuilder.java37 import com.sun.tools.internal.xjc.reader.RawTypeSet;
48 * Builds {@link RawTypeSet} for RELAX NG.
53 public static RawTypeSet build( RELAXNGCompiler compiler, DPattern contentModel, Multiplicity mul ) {
65 * Accumulates discovered {@link RawTypeSet.Ref}s.
67 private final Set<RawTypeSet.Ref> refs = new HashSet<RawTypeSet.Ref>();
76 private RawTypeSet create() {
77 return new RawTypeSet(refs,mul);
110 private static final class CClassInfoRef extends RawTypeSet.Ref {
125 protected RawTypeSet
[all...]
H A DContentModelBinder.java35 import com.sun.tools.internal.xjc.reader.RawTypeSet;
97 RawTypeSet rts = RawTypeSetBuilder.build(compiler, p, optional? Multiplicity.STAR : Multiplicity.PLUS);
98 if(rts.canBeTypeRefs==RawTypeSet.Mode.SHOULD_BE_TYPEREF) {
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/
H A DRawTypeSet.java49 public final class RawTypeSet { class
70 public RawTypeSet( Set<Ref> refs, Multiplicity m ) { method in class:RawTypeSet
86 * Represents the possible binding option for this {@link RawTypeSet}.
90 * This {@link RawTypeSet} can be either an reference property or
95 * This {@link RawTypeSet} can be either an reference property or
100 * This {@link RawTypeSet} can be only bound to a reference property.
213 protected abstract Mode canBeType(RawTypeSet parent);
216 * When this {@link RawTypeSet} binds to a {@link CElementPropertyInfo},
222 * When this {@link RawTypeSet} binds to a {@link CElementPropertyInfo},
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/xmlschema/ct/
H A DMixedComplexTypeBuilder.java31 import com.sun.tools.internal.xjc.reader.RawTypeSet;
95 RawTypeSet ts = RawTypeSetBuilder.build(contentType.asParticle(), false);
103 RawTypeSet ts = RawTypeSetBuilder.build(contentType.asParticle(),false);
H A DMixedExtendedComplexTypeBuilder.java30 import com.sun.tools.internal.xjc.reader.RawTypeSet;
83 RawTypeSet ts = RawTypeSetBuilder.build(ct.getContentType().asParticle(), false);
H A DRestrictedComplexTypeBuilder.java30 import com.sun.tools.internal.xjc.reader.RawTypeSet;
83 RawTypeSet ts = RawTypeSetBuilder.build(particle, false);
H A DMultiWildcardComplexTypeBuilder.java30 import com.sun.tools.internal.xjc.reader.RawTypeSet;
78 RawTypeSet ts = RawTypeSetBuilder.build(contentType.asParticle(),false);
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/
H A DBIProperty.java51 import com.sun.tools.internal.xjc.reader.RawTypeSet;
336 RawTypeSet types) {
364 String defaultName, XSComponent source, RawTypeSet types) {
377 String defaultName, XSComponent source, RawTypeSet types) {
391 RawTypeSet types, boolean isMixed, boolean dummy, boolean content, boolean isMixedExtended) {
426 RawTypeSet types) {
436 generateRef = types.canBeTypeRefs== RawTypeSet.Mode.CAN_BE_TYPEREF;
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/model/
H A DCElementPropertyInfo.java38 import com.sun.tools.internal.xjc.reader.RawTypeSet;
62 * Currently, this is set inside {@link RawTypeSet} in a very ugly way.

Completed in 65 milliseconds