
org.openfuxml.content.table.Column Maven / Gradle / Ivy
package org.openfuxml.content.table;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import org.openfuxml.content.layout.Alignment;
import org.openfuxml.content.layout.Width;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://www.openfuxml.org/layout}alignment" minOccurs="0"/>
* <element ref="{http://www.openfuxml.org/layout}width" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"alignment",
"width"
})
@XmlRootElement(name = "column")
public class Column
implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(namespace = "http://www.openfuxml.org/layout")
protected Alignment alignment;
@XmlElement(namespace = "http://www.openfuxml.org/layout")
protected Width width;
/**
* Gets the value of the alignment property.
*
* @return
* possible object is
* {@link Alignment }
*
*/
public Alignment getAlignment() {
return alignment;
}
/**
* Sets the value of the alignment property.
*
* @param value
* allowed object is
* {@link Alignment }
*
*/
public void setAlignment(Alignment value) {
this.alignment = value;
}
public boolean isSetAlignment() {
return (this.alignment!= null);
}
/**
* Gets the value of the width property.
*
* @return
* possible object is
* {@link Width }
*
*/
public Width getWidth() {
return width;
}
/**
* Sets the value of the width property.
*
* @param value
* allowed object is
* {@link Width }
*
*/
public void setWidth(Width value) {
this.width = value;
}
public boolean isSetWidth() {
return (this.width!= null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy