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

org.fryske_akademy.teidictionaries.jaxb.Hi Maven / Gradle / Ivy

Go to download

ValidationHelpers with to and from XML methods and JAXB classes for tei dictionaries

There is a newer version: 5.9
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2022.05.06 at 05:51:07 PM CEST 
//


package org.fryske_akademy.teidictionaries.jaxb;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlID;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <extension base="{http://www.tei-c.org/ns/1.0}macro.paraContent">
 *       <attGroup ref="{http://www.tei-c.org/ns/1.0}att.global.attributes"/>
 *       <attGroup ref="{http://www.tei-c.org/ns/1.0}att.written.attributes"/>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "hi") public class Hi extends MacroParaContent { @XmlAttribute(name = "id", namespace = "http://www.w3.org/XML/1998/namespace") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected String id; @XmlAttribute(name = "source") protected List sources; @XmlAttribute(name = "n") protected String n; @XmlAttribute(name = "space", namespace = "http://www.w3.org/XML/1998/namespace") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String space; @XmlAttribute(name = "rend") protected List rends; @XmlAttribute(name = "style") protected String style; @XmlAttribute(name = "rendition") protected List rendering; @XmlAttribute(name = "cert") protected String cert; @XmlAttribute(name = "resp") protected List resps; @XmlAttribute(name = "lang", namespace = "http://www.w3.org/XML/1998/namespace") protected String lang; @XmlAttribute(name = "base", namespace = "http://www.w3.org/XML/1998/namespace") @XmlSchemaType(name = "anyURI") protected String base; @XmlAttribute(name = "hand") @XmlSchemaType(name = "anyURI") protected String hand; /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the sources 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 sources property. * *

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

     *    getSources().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getSources() { if (sources == null) { sources = new ArrayList(); } return this.sources; } /** * Gets the value of the n property. * * @return * possible object is * {@link String } * */ public String getN() { return n; } /** * Sets the value of the n property. * * @param value * allowed object is * {@link String } * */ public void setN(String value) { this.n = value; } /** * Gets the value of the space property. * * @return * possible object is * {@link String } * */ public String getSpace() { return space; } /** * Sets the value of the space property. * * @param value * allowed object is * {@link String } * */ public void setSpace(String value) { this.space = value; } /** * Gets the value of the rends 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 rends property. * *

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

     *    getRends().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getRends() { if (rends == null) { rends = new ArrayList(); } return this.rends; } /** * Gets the value of the style property. * * @return * possible object is * {@link String } * */ public String getStyle() { return style; } /** * Sets the value of the style property. * * @param value * allowed object is * {@link String } * */ public void setStyle(String value) { this.style = value; } /** * Gets the value of the rendering 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 rendering property. * *

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

     *    getRendering().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getRendering() { if (rendering == null) { rendering = new ArrayList(); } return this.rendering; } /** * Gets the value of the cert property. * * @return * possible object is * {@link String } * */ public String getCert() { return cert; } /** * Sets the value of the cert property. * * @param value * allowed object is * {@link String } * */ public void setCert(String value) { this.cert = value; } /** * Gets the value of the resps 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 resps property. * *

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

     *    getResps().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getResps() { if (resps == null) { resps = new ArrayList(); } return this.resps; } /** * Gets the value of the lang property. * * @return * possible object is * {@link String } * */ public String getLang() { return lang; } /** * Sets the value of the lang property. * * @param value * allowed object is * {@link String } * */ public void setLang(String value) { this.lang = value; } /** * Gets the value of the base property. * * @return * possible object is * {@link String } * */ public String getBase() { return base; } /** * Sets the value of the base property. * * @param value * allowed object is * {@link String } * */ public void setBase(String value) { this.base = value; } /** * Gets the value of the hand property. * * @return * possible object is * {@link String } * */ public String getHand() { return hand; } /** * Sets the value of the hand property. * * @param value * allowed object is * {@link String } * */ public void setHand(String value) { this.hand = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy