Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/sample/epo2/USAddress.java')
-rw-r--r--examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/sample/epo2/USAddress.java134
1 files changed, 134 insertions, 0 deletions
diff --git a/examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/sample/epo2/USAddress.java b/examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/sample/epo2/USAddress.java
new file mode 100644
index 000000000..c7b10d4aa
--- /dev/null
+++ b/examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/sample/epo2/USAddress.java
@@ -0,0 +1,134 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id: USAddress.java,v 1.1 2006/07/11 16:56:56 mtaal Exp $
+ */
+package org.eclipse.emf.teneo.samples.emf.sample.epo2;
+
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>US Address</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link org.eclipse.emf.teneo.samples.emf.sample.epo2.USAddress#getStreet <em>Street</em>}</li>
+ * <li>{@link org.eclipse.emf.teneo.samples.emf.sample.epo2.USAddress#getCity <em>City</em>}</li>
+ * <li>{@link org.eclipse.emf.teneo.samples.emf.sample.epo2.USAddress#getState <em>State</em>}</li>
+ * <li>{@link org.eclipse.emf.teneo.samples.emf.sample.epo2.USAddress#getZip <em>Zip</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.emf.teneo.samples.emf.sample.epo2.EPO2Package#getUSAddress()
+ * @model
+ * @generated
+ */
+public interface USAddress extends Address {
+ /**
+ * Returns the value of the '<em><b>Street</b></em>' attribute.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Street</em>' attribute isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Street</em>' attribute.
+ * @see #setStreet(String)
+ * @see org.eclipse.emf.teneo.samples.emf.sample.epo2.EPO2Package#getUSAddress_Street()
+ * @model
+ * @generated
+ */
+ String getStreet();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.emf.teneo.samples.emf.sample.epo2.USAddress#getStreet <em>Street</em>}' attribute.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Street</em>' attribute.
+ * @see #getStreet()
+ * @generated
+ */
+ void setStreet(String value);
+
+ /**
+ * Returns the value of the '<em><b>City</b></em>' attribute.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>City</em>' attribute isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>City</em>' attribute.
+ * @see #setCity(String)
+ * @see org.eclipse.emf.teneo.samples.emf.sample.epo2.EPO2Package#getUSAddress_City()
+ * @model
+ * @generated
+ */
+ String getCity();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.emf.teneo.samples.emf.sample.epo2.USAddress#getCity <em>City</em>}' attribute.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>City</em>' attribute.
+ * @see #getCity()
+ * @generated
+ */
+ void setCity(String value);
+
+ /**
+ * Returns the value of the '<em><b>State</b></em>' attribute.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>State</em>' attribute isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>State</em>' attribute.
+ * @see #setState(String)
+ * @see org.eclipse.emf.teneo.samples.emf.sample.epo2.EPO2Package#getUSAddress_State()
+ * @model
+ * @generated
+ */
+ String getState();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.emf.teneo.samples.emf.sample.epo2.USAddress#getState <em>State</em>}' attribute.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>State</em>' attribute.
+ * @see #getState()
+ * @generated
+ */
+ void setState(String value);
+
+ /**
+ * Returns the value of the '<em><b>Zip</b></em>' attribute.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Zip</em>' attribute isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Zip</em>' attribute.
+ * @see #setZip(int)
+ * @see org.eclipse.emf.teneo.samples.emf.sample.epo2.EPO2Package#getUSAddress_Zip()
+ * @model
+ * @generated
+ */
+ int getZip();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.emf.teneo.samples.emf.sample.epo2.USAddress#getZip <em>Zip</em>}' attribute.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Zip</em>' attribute.
+ * @see #getZip()
+ * @generated
+ */
+ void setZip(int value);
+
+} // USAddress

Back to the top