Package org.emftrace.metamodel.QUARCModel.Constraints

Examples of org.emftrace.metamodel.QUARCModel.Constraints.LogicalConnectiveTypes


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


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

TOP

Related Classes of org.emftrace.metamodel.QUARCModel.Constraints.LogicalConnectiveTypes

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.