Package org.w3.xlink
Class ObjectFactory
- java.lang.Object
-
- org.w3.xlink.ObjectFactory
-
public class ObjectFactory extends Object
This object contains factory methods for each Java content interface and Java element interface generated in the org.w3.xlink package.An ObjectFactory allows you to programatically construct new instances of the Java representation for XML content. The Java representation of XML content can consist of schema derived interfaces and classes representing the binding of schema type definitions, element declarations and model groups. Factory methods for each of these are provided in this class.
-
-
Constructor Summary
Constructors Constructor Description ObjectFactory()Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.w3.xlink
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.xml.bind.JAXBElement<ArcType>createArc(ArcType value)ArcTypecreateArcType()Create an instance ofArcTypeExtendedcreateExtended()Create an instance ofExtendedjavax.xml.bind.JAXBElement<LocatorType>createLocator(LocatorType value)LocatorTypecreateLocatorType()Create an instance ofLocatorTypejavax.xml.bind.JAXBElement<ResourceType>createResource(ResourceType value)ResourceTypecreateResourceType()Create an instance ofResourceTypeSimplecreateSimple()Create an instance ofSimplejavax.xml.bind.JAXBElement<TitleEltType>createTitle(TitleEltType value)TitleEltTypecreateTitleEltType()Create an instance ofTitleEltType
-
-
-
Method Detail
-
createTitleEltType
public TitleEltType createTitleEltType()
Create an instance ofTitleEltType
-
createResourceType
public ResourceType createResourceType()
Create an instance ofResourceType
-
createLocatorType
public LocatorType createLocatorType()
Create an instance ofLocatorType
-
createTitle
public javax.xml.bind.JAXBElement<TitleEltType> createTitle(TitleEltType value)
- Parameters:
value- Java instance representing xml element's value.- Returns:
- the new instance of
JAXBElement<TitleEltType>
-
createResource
public javax.xml.bind.JAXBElement<ResourceType> createResource(ResourceType value)
- Parameters:
value- Java instance representing xml element's value.- Returns:
- the new instance of
JAXBElement<ResourceType>
-
createLocator
public javax.xml.bind.JAXBElement<LocatorType> createLocator(LocatorType value)
- Parameters:
value- Java instance representing xml element's value.- Returns:
- the new instance of
JAXBElement<LocatorType>
-
-