| java.lang.Object org.jibx.binding.generator.CustomBase org.jibx.ws.wsdl.ValueCustom
All known Subclasses: org.jibx.ws.wsdl.CollectionValueCustom,
ValueCustom | public class ValueCustom extends CustomBase (Code) | | Method parameter or return value customization information.
|
ValueCustom | protected ValueCustom(NestingBase parent, String name)(Code) | | Constructor.
Parameters: parent - Parameters: name - |
complete | void complete(String type, List docs, Boolean req)(Code) | | Complete customization information based on supplied type. If the type
information has not previously been set, this will set it. It will also
derive the appropriate XML name, if not previously set.
Parameters: type - (null if none available) Parameters: docs - default documentation text (null if none) Parameters: req - required member flag (null if unknown) |
getBoundType | public String getBoundType()(Code) | | Get value type to be bound. This is the same as the plain value type
for a simple (non-collection); for an array value, it's just the array
item type; and for a non-array collection it takes the same form as a
generic type declaration, with the actual item type enclosed in a
less-than/greater-than sign pair following the base type.
parmaterized type |
getCreateType | public String getCreateType()(Code) | | Get member create type.
type used for creating new instance (null if none) |
getElementName | public String getElementName()(Code) | | Get XML element name.
name |
getFactoryMethod | public String getFactoryMethod()(Code) | | Get factory method.
method used for creating new instance (null if none) |
getItemElementName | public String getItemElementName()(Code) | | Get name for elements representing items in collection. This base class
implementation always returns null .
null |
getItemType | public String getItemType()(Code) | | Get item type for parameterized list collection. This base class
implementation always returns null .
null |
getValueName | public String getValueName()(Code) | | Get value name.
name |
isRequired | public boolean isRequired()(Code) | | Check if value is required.
true if required, false if not |
setElementName | public void setElementName(String name)(Code) | | Set XML element name.
Parameters: name - |
|
|