Package ReservationSystemPackage

Examples of ReservationSystemPackage.CarBrand


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


   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void setCarType(CarBrand newCarType) {
    CarBrand oldCarType = carType;
    carType = newCarType == null ? CAR_TYPE_EDEFAULT : newCarType;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, ReservationSystemPackagePackage.CAR_RESERVATION__CAR_TYPE, oldCarType, carType));
  }
View Full Code Here

TOP

Related Classes of ReservationSystemPackage.CarBrand

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.