Searched defs:isNillable (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/core/
H A DTypeRef.java47 boolean isNillable(); method in interface:TypeRef
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DRuntimeTypeRefImpl.java42 public RuntimeTypeRefImpl(RuntimeElementPropertyInfoImpl elementPropertyInfo, QName elementName, Type type, boolean isNillable, String defaultValue) { argument
43 super(elementPropertyInfo, elementName, type, isNillable, defaultValue);
H A DElementPropertyInfoImpl.java149 protected TypeRefImpl<TypeT,ClassDeclT> createTypeRef(QName name,TypeT type,boolean isNillable,String defaultValue) { argument
150 return new TypeRefImpl<TypeT,ClassDeclT>(this,name,type,isNillable,defaultValue);
H A DRuntimeElementPropertyInfoImpl.java70 protected RuntimeTypeRefImpl createTypeRef(QName name, Type type, boolean isNillable, String defaultValue) { argument
71 return new RuntimeTypeRefImpl(this,name,type,isNillable,defaultValue);
H A DTypeRefImpl.java42 private final boolean isNillable; field in class:TypeRefImpl
45 public TypeRefImpl(ElementPropertyInfoImpl<TypeT, ClassDeclT, ?, ?> owner, QName elementName, TypeT type, boolean isNillable, String defaultValue) { argument
49 this.isNillable = isNillable;
66 public boolean isNillable() { method in class:TypeRefImpl
67 return isNillable;
H A DElementInfoImpl.java153 public boolean isNillable() { method in class:ElementInfoImpl.PropertyImpl
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DCTypeRef.java68 this(type, BGMBuilder.getName(decl),getSimpleTypeName(decl), decl.isNillable(), decl.getDefaultValue() );
103 public boolean isNillable() { method in class:CTypeRef
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/
H A DXSElementDecl.java46 boolean isNillable(); method in interface:XSElementDecl
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/
H A DAbstractType.java86 public boolean isNillable() { method in class:AbstractType
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DElementDecl.java89 public boolean isNillable() { return nillable; } method in class:ElementDecl
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/
H A DXmlSchemaGenerator.java358 public void add( QName tagName, boolean isNillable, NonElement<T,C> type ) { argument
365 n.elementDecls.put(tagName.getLocalPart(), n.new ElementWithType(isNillable,type));
1089 if (t.isNillable()) {
1145 if(t.isNillable() || t.getDefaultValue()!=null) {

Completed in 49 milliseconds