public class Paint extends Object
Java class for paint complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="paint">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<attribute name="color" use="required">
<simpleType>
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<pattern value="[0-9a-fA-F]{8}"/>
</restriction>
</simpleType>
</attribute>
<attribute name="scheme">
<simpleType>
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Color"/>
<enumeration value="Gradation"/>
</restriction>
</simpleType>
</attribute>
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected String |
color |
protected String |
scheme |
| Constructor and Description |
|---|
Paint() |
| Modifier and Type | Method and Description |
|---|---|
String |
getColor()
Gets the value of the color property.
|
String |
getScheme()
Gets the value of the scheme property.
|
void |
setColor(String value)
Sets the value of the color property.
|
void |
setScheme(String value)
Sets the value of the scheme property.
|
public String getColor()
Stringpublic void setColor(String value)
value - allowed object is
Stringpublic String getScheme()
StringCopyright © 2018. All rights reserved.