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 programmatically 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 jakarta.xml.bind.JAXBElement<ArcType>createArc(ArcType value)ArcTypecreateArcType()Create an instance ofArcTypeExtendedcreateExtended()Create an instance ofExtendedjakarta.xml.bind.JAXBElement<LocatorType>createLocator(LocatorType value)LocatorTypecreateLocatorType()Create an instance ofLocatorTypejakarta.xml.bind.JAXBElement<ResourceType>createResource(ResourceType value)ResourceTypecreateResourceType()Create an instance ofResourceTypeSimplecreateSimple()Create an instance ofSimplejakarta.xml.bind.JAXBElement<TitleEltType>createTitle(TitleEltType value)TitleEltTypecreateTitleEltType()Create an instance ofTitleEltType
-
-
-
Method Detail
-
createTitleEltType
public TitleEltType createTitleEltType()
Create an instance ofTitleEltType- Returns:
- the new instance of
TitleEltType
-
createResourceType
public ResourceType createResourceType()
Create an instance ofResourceType- Returns:
- the new instance of
ResourceType
-
createLocatorType
public LocatorType createLocatorType()
Create an instance ofLocatorType- Returns:
- the new instance of
LocatorType
-
createArcType
public ArcType createArcType()
Create an instance ofArcType- Returns:
- the new instance of
ArcType
-
createSimple
public Simple createSimple()
Create an instance ofSimple- Returns:
- the new instance of
Simple
-
createExtended
public Extended createExtended()
Create an instance ofExtended- Returns:
- the new instance of
Extended
-
createTitle
public jakarta.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 jakarta.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 jakarta.xml.bind.JAXBElement<LocatorType> createLocator(LocatorType value)
- Parameters:
value- Java instance representing xml element's value.- Returns:
- the new instance of
JAXBElement<LocatorType>
-
-