simplenlg.xmlrealiser.wrapper.XmlVPPhraseSpec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SimpleNLG Show documentation
Show all versions of SimpleNLG Show documentation
Java API for Natural Language Generation
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2014.02.04 at 09:14:07 AM EST
//
package simplenlg.xmlrealiser.wrapper;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for VPPhraseSpec complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VPPhraseSpec">
* <complexContent>
* <extension base="{https://github.com/simplenlg/simplenlg/tree/master/src/main/resources/xml}PhraseElement">
* <sequence>
* </sequence>
* <attGroup ref="{https://github.com/simplenlg/simplenlg/tree/master/src/main/resources/xml}vpPhraseAtts"/>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VPPhraseSpec")
public class XmlVPPhraseSpec
extends XmlPhraseElement
{
@XmlAttribute(name = "AGGREGATE_AUXILIARY")
protected Boolean aggregateauxiliary;
@XmlAttribute(name = "FORM")
protected XmlForm form;
@XmlAttribute(name = "MODAL")
protected String modal;
@XmlAttribute(name = "NEGATED")
protected Boolean negated;
@XmlAttribute(name = "PASSIVE")
protected Boolean passive;
@XmlAttribute(name = "PERFECT")
protected Boolean perfect;
@XmlAttribute(name = "PERSON")
protected XmlPerson person;
@XmlAttribute(name = "PROGRESSIVE")
protected Boolean progressive;
@XmlAttribute(name = "SUPPRESS_GENITIVE_IN_GERUND")
protected Boolean suppressgenitiveingerund;
@XmlAttribute(name = "SUPRESSED_COMPLEMENTISER")
protected Boolean supressedcomplementiser;
@XmlAttribute(name = "TENSE")
protected XmlTense tense;
/**
* Gets the value of the aggregateauxiliary property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isAGGREGATEAUXILIARY() {
return aggregateauxiliary;
}
/**
* Sets the value of the aggregateauxiliary property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setAGGREGATEAUXILIARY(Boolean value) {
this.aggregateauxiliary = value;
}
/**
* Gets the value of the form property.
*
* @return
* possible object is
* {@link XmlForm }
*
*/
public XmlForm getFORM() {
return form;
}
/**
* Sets the value of the form property.
*
* @param value
* allowed object is
* {@link XmlForm }
*
*/
public void setFORM(XmlForm value) {
this.form = value;
}
/**
* Gets the value of the modal property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMODAL() {
return modal;
}
/**
* Sets the value of the modal property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMODAL(String value) {
this.modal = value;
}
/**
* Gets the value of the negated property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isNEGATED() {
return negated;
}
/**
* Sets the value of the negated property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setNEGATED(Boolean value) {
this.negated = value;
}
/**
* Gets the value of the passive property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isPASSIVE() {
return passive;
}
/**
* Sets the value of the passive property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setPASSIVE(Boolean value) {
this.passive = value;
}
/**
* Gets the value of the perfect property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isPERFECT() {
return perfect;
}
/**
* Sets the value of the perfect property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setPERFECT(Boolean value) {
this.perfect = value;
}
/**
* Gets the value of the person property.
*
* @return
* possible object is
* {@link XmlPerson }
*
*/
public XmlPerson getPERSON() {
return person;
}
/**
* Sets the value of the person property.
*
* @param value
* allowed object is
* {@link XmlPerson }
*
*/
public void setPERSON(XmlPerson value) {
this.person = value;
}
/**
* Gets the value of the progressive property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isPROGRESSIVE() {
return progressive;
}
/**
* Sets the value of the progressive property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setPROGRESSIVE(Boolean value) {
this.progressive = value;
}
/**
* Gets the value of the suppressgenitiveingerund property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isSUPPRESSGENITIVEINGERUND() {
return suppressgenitiveingerund;
}
/**
* Sets the value of the suppressgenitiveingerund property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setSUPPRESSGENITIVEINGERUND(Boolean value) {
this.suppressgenitiveingerund = value;
}
/**
* Gets the value of the supressedcomplementiser property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isSUPRESSEDCOMPLEMENTISER() {
return supressedcomplementiser;
}
/**
* Sets the value of the supressedcomplementiser property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setSUPRESSEDCOMPLEMENTISER(Boolean value) {
this.supressedcomplementiser = value;
}
/**
* Gets the value of the tense property.
*
* @return
* possible object is
* {@link XmlTense }
*
*/
public XmlTense getTENSE() {
return tense;
}
/**
* Sets the value of the tense property.
*
* @param value
* allowed object is
* {@link XmlTense }
*
*/
public void setTENSE(XmlTense value) {
this.tense = value;
}
}