All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.w3._1999.xlink.Simple Maven / Gradle / Ivy

There is a newer version: 1.35
Show newest version
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.5
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//

package org.w3._1999.xlink;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAnyElement;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlMixed;
import jakarta.xml.bind.annotation.XmlType;
import java.util.ArrayList;
import java.util.List;
import org.w3c.dom.Element;

/**
 * Intended for use as the type of user-declared elements to make them simple links.
 *
 * 

Java class for simple complex type. * *

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

{@code
 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * }
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType( name = "simple", propOrder = {"content"}) public class Simple { /** Intended for use as the type of user-declared elements to make them simple links. */ @XmlMixed @XmlAnyElement(lax = true) protected List content; @XmlAttribute(name = "type", namespace = "http://www.w3.org/1999/xlink") protected TypeType type; @XmlAttribute(name = "href", namespace = "http://www.w3.org/1999/xlink") protected String href; @XmlAttribute(name = "role", namespace = "http://www.w3.org/1999/xlink") protected String role; @XmlAttribute(name = "arcrole", namespace = "http://www.w3.org/1999/xlink") protected String arcrole; @XmlAttribute(name = "title", namespace = "http://www.w3.org/1999/xlink") protected String title; @XmlAttribute(name = "show", namespace = "http://www.w3.org/1999/xlink") protected ShowType show; @XmlAttribute(name = "actuate", namespace = "http://www.w3.org/1999/xlink") protected ActuateType actuate; /** * Intended for use as the type of user-declared elements to make them simple links. * *

Gets the value of the content property. * *

This accessor method returns a reference to the live list, not a snapshot. Therefore any * modification you make to the returned list will be present inside the JAXB object. This is why * there is not a set method for the content property. * *

For example, to add a new item, do as follows: * *

   * getContent().add(newItem);
   * 
* *

Objects of the following type(s) are allowed in the list {@link Object } {@link String } * {@link Element } * * @return The value of the content property. */ public List getContent() { if (content == null) { content = new ArrayList<>(); } return this.content; } /** * Gets the value of the type property. * * @return possible object is {@link TypeType } */ public TypeType getType() { if (type == null) { return TypeType.SIMPLE; } else { return type; } } /** * Sets the value of the type property. * * @param value allowed object is {@link TypeType } */ public void setType(TypeType value) { this.type = value; } /** * Gets the value of the href property. * * @return possible object is {@link String } */ public String getHref() { return href; } /** * Sets the value of the href property. * * @param value allowed object is {@link String } */ public void setHref(String value) { this.href = value; } /** * Gets the value of the role property. * * @return possible object is {@link String } */ public String getRole() { return role; } /** * Sets the value of the role property. * * @param value allowed object is {@link String } */ public void setRole(String value) { this.role = value; } /** * Gets the value of the arcrole property. * * @return possible object is {@link String } */ public String getArcrole() { return arcrole; } /** * Sets the value of the arcrole property. * * @param value allowed object is {@link String } */ public void setArcrole(String value) { this.arcrole = value; } /** * Gets the value of the title property. * * @return possible object is {@link String } */ public String getTitle() { return title; } /** * Sets the value of the title property. * * @param value allowed object is {@link String } */ public void setTitle(String value) { this.title = value; } /** * Gets the value of the show property. * * @return possible object is {@link ShowType } */ public ShowType getShow() { return show; } /** * Sets the value of the show property. * * @param value allowed object is {@link ShowType } */ public void setShow(ShowType value) { this.show = value; } /** * Gets the value of the actuate property. * * @return possible object is {@link ActuateType } */ public ActuateType getActuate() { return actuate; } /** * Sets the value of the actuate property. * * @param value allowed object is {@link ActuateType } */ public void setActuate(ActuateType value) { this.actuate = value; } }