/** * * Copyright 2005 The Apache Software Foundation or its licensors, as applicable. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.tuscany.das.rdb.test.customer; import java.util.List; /** * * A representation of the model object 'Customer'. * * *

* The following features are supported: *

*

* * @generated */ public interface Customer { /** * Returns the value of the 'ID' attribute. * *

* If the meaning of the 'ID' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'ID' attribute. * @see #isSetID() * @see #unsetID() * @see #setID(int) * @generated */ int getID(); /** * Sets the value of the '{@link org.apache.tuscany.das.rdb.test.customer.Customer#getID ID}' attribute. * * * @param value the new value of the 'ID' attribute. * @see #isSetID() * @see #unsetID() * @see #getID() * @generated */ void setID(int value); /** * Unsets the value of the '{@link org.apache.tuscany.das.rdb.test.customer.Customer#getID ID}' attribute. * * * @see #isSetID() * @see #getID() * @see #setID(int) * @generated */ void unsetID(); /** * Returns whether the value of the '{@link org.apache.tuscany.das.rdb.test.customer.Customer#getID ID}' attribute is set. * * * @return whether the value of the 'ID' attribute is set. * @see #unsetID() * @see #getID() * @see #setID(int) * @generated */ boolean isSetID(); /** * Returns the value of the 'Last Name' attribute. * *

* If the meaning of the 'Last Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Last Name' attribute. * @see #setLastName(String) * @generated */ String getLastName(); /** * Sets the value of the '{@link org.apache.tuscany.das.rdb.test.customer.Customer#getLastName Last Name}' attribute. * * * @param value the new value of the 'Last Name' attribute. * @see #getLastName() * @generated */ void setLastName(String value); /** * Returns the value of the 'Address' attribute. * *

* If the meaning of the 'Address' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Address' attribute. * @see #setAddress(String) * @generated */ String getAddress(); /** * Sets the value of the '{@link org.apache.tuscany.das.rdb.test.customer.Customer#getAddress Address}' attribute. * * * @param value the new value of the 'Address' attribute. * @see #getAddress() * @generated */ void setAddress(String value); /** * Returns the value of the 'Orders' containment reference list. * The list contents are of type {@link org.apache.tuscany.das.rdb.test.customer.AnOrder}. * *

* If the meaning of the 'Orders' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Orders' containment reference list. * @generated */ List getOrders(); } // Customer