riv.ehr.patientsummary._1.StrucDocTableItem Maven / Gradle / Ivy
package riv.ehr.patientsummary._1;
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for StrucDoc.TableItem complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="StrucDoc.TableItem">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attGroup ref="{urn:riv:ehr:patientsummary:1}StrucDoc.Base"/>
* <attribute name="align" type="{urn:riv:ehr:patientsummary:1}StrucDoc.Align" />
* <attribute name="char" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="charoff" type="{urn:riv:ehr:patientsummary:1}StrucDoc.Length" />
* <attribute name="valign" type="{urn:riv:ehr:patientsummary:1}StrucDoc.VAlign" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StrucDoc.TableItem")
@XmlSeeAlso({
StrucDocTRowGroup.class,
StrucDocColItem.class,
StrucDocTRow.class
})
public class StrucDocTableItem {
@XmlAttribute(name = "align")
protected StrucDocAlign align;
@XmlAttribute(name = "char")
protected String _char;
@XmlAttribute(name = "charoff")
protected String charoff;
@XmlAttribute(name = "valign")
protected StrucDocVAlign valign;
@XmlAttribute(name = "ID")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected String id;
@XmlAttribute(name = "language")
protected String language;
@XmlAttribute(name = "styleCode")
protected List styleCode;
/**
* Gets the value of the align property.
*
* @return
* possible object is
* {@link StrucDocAlign }
*
*/
public StrucDocAlign getAlign() {
return align;
}
/**
* Sets the value of the align property.
*
* @param value
* allowed object is
* {@link StrucDocAlign }
*
*/
public void setAlign(StrucDocAlign value) {
this.align = value;
}
/**
* Gets the value of the char property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getChar() {
return _char;
}
/**
* Sets the value of the char property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setChar(String value) {
this._char = value;
}
/**
* Gets the value of the charoff property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCharoff() {
return charoff;
}
/**
* Sets the value of the charoff property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCharoff(String value) {
this.charoff = value;
}
/**
* Gets the value of the valign property.
*
* @return
* possible object is
* {@link StrucDocVAlign }
*
*/
public StrucDocVAlign getValign() {
return valign;
}
/**
* Sets the value of the valign property.
*
* @param value
* allowed object is
* {@link StrucDocVAlign }
*
*/
public void setValign(StrucDocVAlign value) {
this.valign = value;
}
/**
* 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 language property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLanguage() {
return language;
}
/**
* Sets the value of the language property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLanguage(String value) {
this.language = value;
}
/**
* Gets the value of the styleCode 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 styleCode property.
*
*
* For example, to add a new item, do as follows:
*
* getStyleCode().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getStyleCode() {
if (styleCode == null) {
styleCode = new ArrayList();
}
return this.styleCode;
}
}