riv.ehr.patientsummary._1.StrucDocColItem Maven / Gradle / Ivy
package riv.ehr.patientsummary._1;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for StrucDoc.ColItem complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="StrucDoc.ColItem">
* <complexContent>
* <extension base="{urn:riv:ehr:patientsummary:1}StrucDoc.TableItem">
* <attribute name="span" type="{http://www.w3.org/2001/XMLSchema}int" default="1" />
* <attribute name="width" type="{urn:riv:ehr:patientsummary:1}StrucDoc.Length" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StrucDoc.ColItem")
@XmlSeeAlso({
StrucDocCol.class,
StrucDocColGroup.class
})
public class StrucDocColItem
extends StrucDocTableItem
{
@XmlAttribute(name = "span")
protected Integer span;
@XmlAttribute(name = "width")
protected String width;
/**
* Gets the value of the span property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public int getSpan() {
if (span == null) {
return 1;
} else {
return span;
}
}
/**
* Sets the value of the span property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setSpan(Integer value) {
this.span = value;
}
/**
* Gets the value of the width property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getWidth() {
return width;
}
/**
* Sets the value of the width property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setWidth(String value) {
this.width = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy