Examples of CastIntegerType


Examples of org.dmg.pmml._40.CastIntegerType

   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void setCastInteger(CastIntegerType newCastInteger) {
    CastIntegerType oldCastInteger = castInteger;
    castInteger = newCastInteger == null ? CAST_INTEGER_EDEFAULT : newCastInteger;
    boolean oldCastIntegerESet = castIntegerESet;
    castIntegerESet = true;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, _40Package.TARGET_TYPE__CAST_INTEGER, oldCastInteger, castInteger, !oldCastIntegerESet));
View Full Code Here

Examples of org.dmg.pmml._40.CastIntegerType

   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void unsetCastInteger() {
    CastIntegerType oldCastInteger = castInteger;
    boolean oldCastIntegerESet = castIntegerESet;
    castInteger = CAST_INTEGER_EDEFAULT;
    castIntegerESet = false;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.UNSET, _40Package.TARGET_TYPE__CAST_INTEGER, oldCastInteger, CAST_INTEGER_EDEFAULT, oldCastIntegerESet));
View Full Code Here

Examples of org.dmg.pmml._40.CastIntegerType

   * <!-- end-user-doc -->
   * @generated
   */
  @Override
  public String getText(Object object) {
    CastIntegerType labelValue = ((TargetType)object).getCastInteger();
    String label = labelValue == null ? null : labelValue.toString();
    return label == null || label.length() == 0 ?
      getString("_UI_TargetType_type") :
      getString("_UI_TargetType_type") + " " + label;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.