Examples of DSLSentence


Examples of org.drools.ide.common.client.modeldriven.brl.DSLSentence

            final Combo dslCombo = new Combo( composite,
                                              SWT.READ_ONLY );
            dslCombo.add( "Choose..." );

            for ( int i = 0; i < getCompletion().getDSLConditions().length; i++ ) {
                DSLSentence sen = getCompletion().getDSLConditions()[i];
                dslCombo.add( sen.toString() );
            }

            dslCombo.select( 0 );

            dslCombo.addListener( SWT.Selection,
                                  new Listener() {
                                      public void handleEvent(Event event) {
                                          if ( dslCombo.getSelectionIndex() == 0 ) {
                                              return;
                                          }

                                          DSLSentence sentence = getCompletion().getDSLConditions()[dslCombo.getSelectionIndex() - 1];
                                          // TODO Handle this kind of situations with care - add* can
                                          // throw runtime exceptions
                                          modeller.getModel().addLhsItem( sentence.copy() );

                                          modeller.reloadLhs();
                                          modeller.setDirty( true );
                                          close();
                                      }
View Full Code Here

Examples of org.drools.ide.common.client.modeldriven.brl.DSLSentence

        m.addRhsItem( new ActionSetField( "q" ) );

        assertFalse( m.hasDSLSentences() );

        m.addLhsItem( new DSLSentence() );
        assertTrue( m.hasDSLSentences() );

        m.addRhsItem( new DSLSentence() );
        assertTrue( m.hasDSLSentences() );

        m = new RuleModel();

        m.addLhsItem( new DSLSentence() );
        assertTrue( m.hasDSLSentences() );

        m = new RuleModel();
        m.addRhsItem( new DSLSentence() );
        assertTrue( m.hasDSLSentences() );

    }
View Full Code Here

Examples of org.drools.ide.common.client.modeldriven.brl.DSLSentence

        m.addRhsItem( set );

        final ActionRetractFact ret = new ActionRetractFact( "p1" );
        m.addRhsItem( ret );

        final DSLSentence sen = new DSLSentence();
        sen.setDefinition( "Send an email to {administrator}" );

        m.addRhsItem( sen );
        return m;
    }
View Full Code Here

Examples of org.drools.ide.common.client.modeldriven.brl.DSLSentence

    }

    @Test
    public void testAssertWithDSL() throws Exception {
        RuleModel m = new RuleModel();
        DSLSentence sen = new DSLSentence();
        sen.setDefinition( "I CAN HAS DSL" );
        m.addRhsItem( sen );
        ActionInsertFact ins = new ActionInsertFact( "Shizzle" );
        ActionFieldValue val = new ActionFieldValue( "goo",
                                                     "42",
                                                     "Numeric" );
View Full Code Here

Examples of org.drools.ide.common.client.modeldriven.brl.DSLSentence

        m.addRhsItem( set );

        final ActionRetractFact ret = new ActionRetractFact( "p1" );
        m.addRhsItem( ret );

        final DSLSentence sen = new DSLSentence();
        sen.setDefinition( "Send an email to {administrator}" );

        m.addRhsItem( sen );
        return m;
    }
View Full Code Here

Examples of org.drools.ide.common.client.modeldriven.brl.DSLSentence

        action.addFieldValue( value );

        model.addLhsItem( pattern );
        model.addRhsItem( action );

        DSLSentence dslCondition = new DSLSentence();
        dslCondition.sentence = "This is a sentence";

        model.addLhsItem( dslCondition );

        DSLSentence dslAction = new DSLSentence();
        dslAction.sentence = "say {42}";

        model.addRhsItem( dslAction );

        rule1.updateContent( BRXMLPersistence.getInstance().marshal( model ) );
View Full Code Here

Examples of org.drools.ide.common.client.modeldriven.brl.DSLSentence

            final Combo dslCombo = new Combo( composite,
                                              SWT.READ_ONLY );
            dslCombo.add( heading );
            for ( int i = 0; i < getCompletion().getDSLActions().length; i++ ) {
                DSLSentence sen = getCompletion().getDSLActions()[i];
                dslCombo.add( sen.toString() );
            }

            dslCombo.select( 0 );

            dslCombo.addListener( SWT.Selection,
                                  new Listener() {
                                      public void handleEvent(Event event) {
                                          if ( dslCombo.getSelectionIndex() == 0 ) {
                                              return;
                                          }

                                          DSLSentence sentence = getCompletion().getDSLActions()[dslCombo.getSelectionIndex() - 1];
                                          modeller.getModel().addRhsItem( sentence.copy() );
                                          modeller.setDirty( true );
                                          modeller.reloadRhs();
                                          close();
                                      }
                                  } );
View Full Code Here

Examples of org.drools.ide.common.client.modeldriven.brl.DSLSentence

  /**
   * Add a DSL sentence for an action.
   */
  public void addDSLActionSentence(final String definition) {
    final DSLSentence sen = new DSLSentence();
    sen.setDefinition(definition);
    this.actionDSLSentences.add(sen);
  }
View Full Code Here

Examples of org.drools.ide.common.client.modeldriven.brl.DSLSentence

  /**
   * Add a DSL sentence for a condition.
   */
  public void addDSLConditionSentence(final String definition) {
    final DSLSentence sen = new DSLSentence();
    sen.setDefinition(definition);
    this.conditionDSLSentences.add(sen);
  }
View Full Code Here

Examples of org.drools.ide.common.client.modeldriven.brl.DSLSentence

  private DSLSentence[] makeArray(List<DSLSentence> ls) {
    return ls.toArray(new DSLSentence[ls.size()]);
  }

  public void addDSLMapping(DSLMappingEntry entry) {
    DSLSentence sen = new DSLSentence();
    sen.setDefinition(entry.getMappingKey());
    if (entry.getSection() == DSLMappingEntry.CONDITION) {
      this.conditionDSLSentences.add(sen);
    } else if (entry.getSection() == DSLMappingEntry.CONSEQUENCE) {
      this.actionDSLSentences.add(sen);
    } else if (entry.getSection() == DSLMappingEntry.KEYWORD) {
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.