Package com.ibm.maximo
Class MXGLAccountType
- java.lang.Object
-
- com.ibm.maximo.MXGLAccountType
-
public class MXGLAccountType extends java.lang.ObjectJava class for MXGLAccountType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="MXGLAccountType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="VALUE" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="GLCOMP" type="{http://www.ibm.com/maximo}MXGLComponentType" maxOccurs="20" minOccurs="0"/> </sequence> <attribute name="changed" type="{http://www.ibm.com/maximo}ChangeIndicatorType" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Booleanchangedprotected java.util.List<MXGLComponentType>glcompprotected java.lang.Stringvalue
-
Constructor Summary
Constructors Constructor Description MXGLAccountType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<MXGLComponentType>getGLCOMP()Gets the value of the glcomp property.java.lang.StringgetVALUE()Gets the value of the value property.java.lang.BooleanisChanged()Gets the value of the changed property.voidsetChanged(java.lang.Boolean value)Sets the value of the changed property.voidsetVALUE(java.lang.String value)Sets the value of the value property.
-
-
-
Field Detail
-
value
protected java.lang.String value
-
glcomp
protected java.util.List<MXGLComponentType> glcomp
-
changed
protected java.lang.Boolean changed
-
-
Method Detail
-
getVALUE
public java.lang.String getVALUE()
Gets the value of the value property.- Returns:
- possible object is
String
-
setVALUE
public void setVALUE(java.lang.String value)
Sets the value of the value property.- Parameters:
value- allowed object isString
-
getGLCOMP
public java.util.List<MXGLComponentType> getGLCOMP()
Gets the value of the glcomp 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
setmethod for the glcomp property.For example, to add a new item, do as follows:
getGLCOMP().add(newItem);Objects of the following type(s) are allowed in the list
MXGLComponentType
-
isChanged
public java.lang.Boolean isChanged()
Gets the value of the changed property.- Returns:
- possible object is
Boolean
-
setChanged
public void setChanged(java.lang.Boolean value)
Sets the value of the changed property.- Parameters:
value- allowed object isBoolean
-
-