/** * * * * $Id$ */ package org.apache.tuscany.das.rdb.test.company; import java.util.List; /** * * A representation of the model object 'Type'. * * *

* The following features are supported: *

*

* * @generated */ public interface CompanyType { /** * Returns the value of the 'Departments' containment reference list. * The list contents are of type {@link org.apache.tuscany.das.rdb.test.company.DepartmentType}. * *

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

* * @return the value of the 'Departments' containment reference list. * @generated */ List getDepartments(); /** * Returns the value of the 'Employee Of The Month' attribute. * *

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

* * @return the value of the 'Employee Of The Month' attribute. * @see #setEmployeeOfTheMonth(String) * @generated */ String getEmployeeOfTheMonth(); /** * Sets the value of the '{@link org.apache.tuscany.das.rdb.test.company.CompanyType#getEmployeeOfTheMonth Employee Of The Month}' attribute. * * * @param value the new value of the 'Employee Of The Month' attribute. * @see #getEmployeeOfTheMonth() * @generated */ void setEmployeeOfTheMonth(String value); /** * Returns the value of the 'Name' attribute. * *

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

* * @return the value of the 'Name' attribute. * @see #setName(String) * @generated */ String getName(); /** * Sets the value of the '{@link org.apache.tuscany.das.rdb.test.company.CompanyType#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); } // CompanyType