Package com.puppetlabs.geppetto.pp

Examples of com.puppetlabs.geppetto.pp.Expression


   * <!-- end-user-doc -->
   *
   * @generated
   */
  public NotificationChain basicSetNameExpr(Expression newNameExpr, NotificationChain msgs) {
    Expression oldNameExpr = nameExpr;
    nameExpr = newNameExpr;
    if(eNotificationRequired()) {
      ENotificationImpl notification = new ENotificationImpl(
        this, Notification.SET, PPPackage.RESOURCE_BODY__NAME_EXPR, oldNameExpr, newNameExpr);
      if(msgs == null)
View Full Code Here


   * <!-- end-user-doc -->
   *
   * @generated
   */
  public NotificationChain basicSetExpr(Expression newExpr, NotificationChain msgs) {
    Expression oldExpr = expr;
    expr = newExpr;
    if(eNotificationRequired()) {
      ENotificationImpl notification = new ENotificationImpl(
        this, Notification.SET, PPPackage.UNARY_EXPRESSION__EXPR, oldExpr, newExpr);
      if(msgs == null)
View Full Code Here

   * <!-- end-user-doc -->
   *
   * @generated
   */
  public NotificationChain basicSetLeftExpr(Expression newLeftExpr, NotificationChain msgs) {
    Expression oldLeftExpr = leftExpr;
    leftExpr = newLeftExpr;
    if(eNotificationRequired()) {
      ENotificationImpl notification = new ENotificationImpl(
        this, Notification.SET, PPPackage.PARAMETERIZED_EXPRESSION__LEFT_EXPR, oldLeftExpr, newLeftExpr);
      if(msgs == null)
View Full Code Here

  protected ResourceExpression createResourceExpression(boolean exported, boolean virtual, boolean additive,
      String type, Expression title, Object... keyValPairs) {

    ResourceExpression re = pf.createResourceExpression();

    Expression resourceExpr = null;
    if(virtual) {
      VirtualNameOrReference resourceName = pf.createVirtualNameOrReference();
      resourceName.setValue(type);
      resourceName.setExported(exported);
      resourceExpr = resourceName;
View Full Code Here

TOP

Related Classes of com.puppetlabs.geppetto.pp.Expression

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.