public class Bean extends AbstractPojo
Java class for bean complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="bean">
<complexContent>
<extension base="{}abstractPojo">
<sequence>
<element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
<element name="property" type="{}property" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<attribute name="extends" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="deprecated" type="{http://www.w3.org/2001/XMLSchema}string" />
</extension>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected boolean |
_abstract |
protected String |
_deprecated |
protected String |
_extends |
protected Annotations |
annotations |
protected String |
description |
protected List<Import> |
imports |
protected List<Property> |
property |
protected boolean |
superEquals |
protected String |
type |
clazz, template| Constructor and Description |
|---|
Bean() |
| Modifier and Type | Method and Description |
|---|---|
Annotations |
getAnnotations() |
String |
getDeprecated()
Gets the value of the deprecated property.
|
String |
getDescription()
Gets the value of the description property.
|
String |
getExtends()
Gets the value of the extends property.
|
List<Import> |
getImports() |
List<Property> |
getProperty()
Gets the value of the property property.
|
String |
getType() |
boolean |
isAbstract() |
boolean |
isSuperEquals() |
void |
setAbstract(boolean _abstract) |
void |
setAnnotations(Annotations annotations) |
void |
setDeprecated(String value)
Sets the value of the deprecated property.
|
void |
setDescription(String value)
Sets the value of the description property.
|
void |
setExtends(String value)
Sets the value of the extends property.
|
void |
setSuperEquals(boolean superEquals) |
void |
setType(String type) |
getClazz, getTemplate, setClazz, setTemplateprotected String description
protected Annotations annotations
protected String type
protected String _extends
protected String _deprecated
protected boolean _abstract
protected boolean superEquals
public String getType()
public void setType(String type)
public String getDescription()
Stringpublic void setDescription(String value)
value - allowed object is Stringpublic List<Property> getProperty()
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 property property.
For example, to add a new item, do as follows:
getProperty().add(newItem);
Objects of the following type(s) are allowed in the list Property
public String getExtends()
Stringpublic void setExtends(String value)
value - allowed object is Stringpublic String getDeprecated()
Stringpublic void setDeprecated(String value)
value - allowed object is Stringpublic Annotations getAnnotations()
public void setAnnotations(Annotations annotations)
public boolean isAbstract()
public void setAbstract(boolean _abstract)
public boolean isSuperEquals()
public void setSuperEquals(boolean superEquals)
Copyright © 2017 SAP SE. All Rights Reserved.