Package ReservationSystemPackage

Examples of ReservationSystemPackage.RoomType


   * <!-- end-user-doc -->
   * @generated
   */
  @Override
  public String getText(Object object) {
    RoomType labelValue = ((RoomReservation)object).getType();
    String label = labelValue == null ? null : labelValue.toString();
    return label == null || label.length() == 0 ?
      getString("_UI_RoomReservation_type") :
      getString("_UI_RoomReservation_type") + " " + label;
  }
View Full Code Here


   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void setType(RoomType newType) {
    RoomType oldType = type;
    type = newType == null ? TYPE_EDEFAULT : newType;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, ReservationSystemPackagePackage.ROOM_RESERVATION__TYPE, oldType, type));
  }
View Full Code Here

TOP

Related Classes of ReservationSystemPackage.RoomType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.