// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2010.04.16 at 12:23:52 PM PDT // package dtd.kegg; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.NormalizedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "graphics") public class Graphics { @XmlAttribute @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String name; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String x; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String y; @XmlAttribute @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String coords; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String type; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String width; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String height; @XmlAttribute @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String fgcolor; @XmlAttribute @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String bgcolor; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the x property. * * @return * possible object is * {@link String } * */ public String getX() { return x; } /** * Sets the value of the x property. * * @param value * allowed object is * {@link String } * */ public void setX(String value) { this.x = value; } /** * Gets the value of the y property. * * @return * possible object is * {@link String } * */ public String getY() { return y; } /** * Sets the value of the y property. * * @param value * allowed object is * {@link String } * */ public void setY(String value) { this.y = value; } /** * Gets the value of the coords property. * * @return * possible object is * {@link String } * */ public String getCoords() { return coords; } /** * Sets the value of the coords property. * * @param value * allowed object is * {@link String } * */ public void setCoords(String value) { this.coords = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { if (type == null) { return "rectangle"; } else { return type; } } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the width property. * * @return * possible object is * {@link String } * */ public String getWidth() { if (width == null) { return "45"; } else { return width; } } /** * Sets the value of the width property. * * @param value * allowed object is * {@link String } * */ public void setWidth(String value) { this.width = value; } /** * Gets the value of the height property. * * @return * possible object is * {@link String } * */ public String getHeight() { if (height == null) { return "17"; } else { return height; } } /** * Sets the value of the height property. * * @param value * allowed object is * {@link String } * */ public void setHeight(String value) { this.height = value; } /** * Gets the value of the fgcolor property. * * @return * possible object is * {@link String } * */ public String getFgcolor() { if (fgcolor == null) { return "#000000"; } else { return fgcolor; } } /** * Sets the value of the fgcolor property. * * @param value * allowed object is * {@link String } * */ public void setFgcolor(String value) { this.fgcolor = value; } /** * Gets the value of the bgcolor property. * * @return * possible object is * {@link String } * */ public String getBgcolor() { if (bgcolor == null) { return "#FFFFFF"; } else { return bgcolor; } } /** * Sets the value of the bgcolor property. * * @param value * allowed object is * {@link String } * */ public void setBgcolor(String value) { this.bgcolor = value; } }