| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- //
- // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.6-01/24/2006 06:08 PM(kohsuke)-fcs
- // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
- // Any modifications to this file will be lost upon recompilation of the source schema.
- // Generated on: 2018.09.10 at 08:01:16 AM PDT
- //
- package magoffin.matt.ieat.domain;
- /**
- * Java content class for unit complex type.
- * <p>The following schema fragment specifies the expected content contained within this java content object. (defined at file:/home/tom/workspace/iEat/hyperjaxb2-build/src/main/resources/core.xsd line 173)
- * <p>
- * <pre>
- * <complexType name="unit">
- * <simpleContent>
- * <extension base="<http://www.w3.org/2001/XMLSchema>string">
- * <attribute name="abbreviation" type="{http://www.w3.org/2001/XMLSchema}string" />
- * <attribute name="mass" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
- * <attribute name="systemId" type="{http://www.w3.org/2001/XMLSchema}int" />
- * <attribute name="toImperial" type="{http://www.w3.org/2001/XMLSchema}double" />
- * <attribute name="toMetric" type="{http://www.w3.org/2001/XMLSchema}double" />
- * <attribute name="toUS" type="{http://www.w3.org/2001/XMLSchema}double" />
- * <attribute name="unitId" type="{http://www.w3.org/2001/XMLSchema}int" />
- * </extension>
- * </simpleContent>
- * </complexType>
- * </pre>
- *
- */
- public interface Unit {
- /**
- * Gets the value of the abbreviation property.
- *
- * @return
- * possible object is
- * {@link java.lang.String}
- */
- java.lang.String getAbbreviation();
- /**
- * Sets the value of the abbreviation property.
- *
- * @param value
- * allowed object is
- * {@link java.lang.String}
- */
- void setAbbreviation(java.lang.String value);
- /**
- * Gets the value of the mass property.
- *
- */
- boolean isMass();
- /**
- * Sets the value of the mass property.
- *
- */
- void setMass(boolean value);
- /**
- * Gets the value of the toImperial property.
- *
- */
- double getToImperial();
- /**
- * Sets the value of the toImperial property.
- *
- */
- void setToImperial(double value);
- /**
- * Gets the value of the unitId property.
- *
- * @return
- * possible object is
- * {@link java.lang.Integer}
- */
- java.lang.Integer getUnitId();
- /**
- * Sets the value of the unitId property.
- *
- * @param value
- * allowed object is
- * {@link java.lang.Integer}
- */
- void setUnitId(java.lang.Integer value);
- /**
- * Gets the value of the value property.
- *
- * @return
- * possible object is
- * {@link java.lang.String}
- */
- java.lang.String getValue();
- /**
- * Sets the value of the value property.
- *
- * @param value
- * allowed object is
- * {@link java.lang.String}
- */
- void setValue(java.lang.String value);
- /**
- * Gets the value of the systemId property.
- *
- * @return
- * possible object is
- * {@link java.lang.Integer}
- */
- java.lang.Integer getSystemId();
- /**
- * Sets the value of the systemId property.
- *
- * @param value
- * allowed object is
- * {@link java.lang.Integer}
- */
- void setSystemId(java.lang.Integer value);
- /**
- * Gets the value of the toMetric property.
- *
- */
- double getToMetric();
- /**
- * Sets the value of the toMetric property.
- *
- */
- void setToMetric(double value);
- /**
- * Gets the value of the toUS property.
- *
- */
- double getToUS();
- /**
- * Sets the value of the toUS property.
- *
- */
- void setToUS(double value);
- }
|