Class SimpleLinkType

  • All Implemented Interfaces:
    com.helger.commons.lang.IExplicitlyCloneable, Serializable, Cloneable

    @CodingStyleguideUnaware
    public class SimpleLinkType
    extends Object
    implements Serializable, com.helger.commons.lang.IExplicitlyCloneable
    Incorporates the attributes defined for use in simple XLink elements. The xlink:role attribute should be included to indicate the WSDL version of the target document (e.g. xlink:role="http://www.w3.org/2005/08/wsdl").

    Java class for SimpleLinkType complex type.

    The following schema fragment specifies the expected content contained within this class.

    
     <complexType name="SimpleLinkType">
       <complexContent>
         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
           <attGroup ref="{http://www.w3.org/1999/xlink}simpleAttrs"/>
         </restriction>
       </complexContent>
     </complexType>
     

    This class was annotated by ph-jaxb-plugin -Xph-annotate

    This class contains methods created by ph-jaxb-plugin -Xph-equalshashcode

    This class contains methods created by ph-jaxb-plugin -Xph-tostring

    This class contains methods created by ph-jaxb-plugin -Xph-cloneable2

    This class contains methods created by ph-jaxb-plugin -Xph-value-extender

    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      SimpleLinkType()
      Default constructor
      Note: automatically created by ph-jaxb-plugin -Xph-value-extender
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      SimpleLinkType clone()
      Created by ph-jaxb-plugin -Xph-cloneable2
      void cloneTo​(SimpleLinkType ret)
      This method clones all values from this to the passed object.
      boolean equals​(Object o)
      Created by ph-jaxb-plugin -Xph-equalshashcode
      com.helger.xsds.xlink.XLinkActuateType getActuate()
      Gets the value of the actuate property.
      String getArcrole()
      Gets the value of the arcrole property.
      String getHref()
      Gets the value of the href property.
      String getRole()
      Gets the value of the role property.
      com.helger.xsds.xlink.XLinkShowType getShow()
      Gets the value of the show property.
      String getTitle()
      Gets the value of the title property.
      com.helger.xsds.xlink.XLinkTypeType getType()
      Gets the value of the type property.
      int hashCode()
      Created by ph-jaxb-plugin -Xph-equalshashcode
      void setActuate​(com.helger.xsds.xlink.XLinkActuateType value)
      Sets the value of the actuate property.
      void setArcrole​(String value)
      Sets the value of the arcrole property.
      void setHref​(String value)
      Sets the value of the href property.
      void setRole​(String value)
      Sets the value of the role property.
      void setShow​(com.helger.xsds.xlink.XLinkShowType value)
      Sets the value of the show property.
      void setTitle​(String value)
      Sets the value of the title property.
      void setType​(com.helger.xsds.xlink.XLinkTypeType value)
      Sets the value of the type property.
      String toString()
      Created by ph-jaxb-plugin -Xph-tostring
    • Constructor Detail

      • SimpleLinkType

        public SimpleLinkType()
        Default constructor
        Note: automatically created by ph-jaxb-plugin -Xph-value-extender
    • Method Detail

      • getType

        @Nullable
        public com.helger.xsds.xlink.XLinkTypeType getType()
        Gets the value of the type property.
        Returns:
        possible object is XLinkTypeType
      • setType

        public void setType​(@Nullable
                            com.helger.xsds.xlink.XLinkTypeType value)
        Sets the value of the type property.
        Parameters:
        value - allowed object is XLinkTypeType
      • getHref

        @Nullable
        public String getHref()
        Gets the value of the href property.
        Returns:
        possible object is String
      • setHref

        public void setHref​(@Nullable
                            String value)
        Sets the value of the href property.
        Parameters:
        value - allowed object is String
      • getRole

        @Nullable
        public String getRole()
        Gets the value of the role property.
        Returns:
        possible object is String
      • setRole

        public void setRole​(@Nullable
                            String value)
        Sets the value of the role property.
        Parameters:
        value - allowed object is String
      • getArcrole

        @Nullable
        public String getArcrole()
        Gets the value of the arcrole property.
        Returns:
        possible object is String
      • setArcrole

        public void setArcrole​(@Nullable
                               String value)
        Sets the value of the arcrole property.
        Parameters:
        value - allowed object is String
      • getTitle

        @Nullable
        public String getTitle()
        Gets the value of the title property.
        Returns:
        possible object is String
      • setTitle

        public void setTitle​(@Nullable
                             String value)
        Sets the value of the title property.
        Parameters:
        value - allowed object is String
      • getShow

        @Nullable
        public com.helger.xsds.xlink.XLinkShowType getShow()
        Gets the value of the show property.
        Returns:
        possible object is XLinkShowType
      • setShow

        public void setShow​(@Nullable
                            com.helger.xsds.xlink.XLinkShowType value)
        Sets the value of the show property.
        Parameters:
        value - allowed object is XLinkShowType
      • getActuate

        @Nullable
        public com.helger.xsds.xlink.XLinkActuateType getActuate()
        Gets the value of the actuate property.
        Returns:
        possible object is XLinkActuateType
      • setActuate

        public void setActuate​(@Nullable
                               com.helger.xsds.xlink.XLinkActuateType value)
        Sets the value of the actuate property.
        Parameters:
        value - allowed object is XLinkActuateType
      • equals

        public boolean equals​(Object o)
        Created by ph-jaxb-plugin -Xph-equalshashcode
        Overrides:
        equals in class Object
      • hashCode

        public int hashCode()
        Created by ph-jaxb-plugin -Xph-equalshashcode
        Overrides:
        hashCode in class Object
      • toString

        public String toString()
        Created by ph-jaxb-plugin -Xph-tostring
        Overrides:
        toString in class Object
      • cloneTo

        public void cloneTo​(@Nonnull
                            SimpleLinkType ret)
        This method clones all values from this to the passed object. All data in the parameter object is overwritten!Created by ph-jaxb-plugin -Xph-cloneable2
        Parameters:
        ret - The target object to clone to. May not be null.
      • clone

        @Nonnull
        @ReturnsMutableCopy
        public SimpleLinkType clone()
        Created by ph-jaxb-plugin -Xph-cloneable2
        Specified by:
        clone in interface com.helger.commons.lang.IExplicitlyCloneable
        Overrides:
        clone in class Object
        Returns:
        The cloned object. Never null.