Package org.drools.guvnor.client.modeldriven.brl

Examples of org.drools.guvnor.client.modeldriven.brl.DSLSentence


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


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

  public void addDSLMapping(DSLMappingEntry entry) {
    DSLSentence sen = new DSLSentence();
    sen.sentence = entry.getMappingKey();
    if (entry.getSection() == DSLMappingEntry.CONDITION) {
      this.conditionDSLSentences.add(sen);
    } else if (entry.getSection() == DSLMappingEntry.CONSEQUENCE) {
      this.actionDSLSentences.add(sen);
View Full Code Here

    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

public class DSLSentenceTest extends TestCase {

    public void testSentence() {

        final DSLSentence sen = new DSLSentence();
        sen.sentence = "this is {something} here and {here}";
        assertEquals( "this is something here and here",
                      sen.toString() );

        sen.sentence = "foo bar";
        assertEquals( "foo bar",
                      sen.toString() );

        final DSLSentence newOne = sen.copy();
        assertFalse( newOne == sen );
        assertEquals( newOne.sentence,
                      sen.sentence );
    }
View Full Code Here

        assertEquals( newOne.sentence,
                      sen.sentence );
    }

    public void testEnumSentence(){
        final DSLSentence sen = new DSLSentence();
        sen.sentence = "this is {variable:ENUM:Value.test} here and {here}";
        assertEquals( "this is variable here and here",sen.toString() );
    }
View Full Code Here

        sen.sentence = "this is {variable:ENUM:Value.test} here and {here}";
        assertEquals( "this is variable here and here",sen.toString() );
    }

    public void testWithNewLines() {
      final DSLSentence sen = new DSLSentence();
        sen.sentence = "this is {variable}\\n here and {here}";
        assertEquals( "this is variable\n here and here",sen.toString() );

    }
View Full Code Here

    public static List filter(DSLSentence[] source,
                             String filterVal) {

        ArrayList filteredList = new ArrayList();
        for ( int i = 0; i < source.length; i++ ) {
            DSLSentence item = source[i];
            if (filterVal.equals( "" ) || item.sentence.startsWith( filterVal )) {
                filteredList.add( item );
            }
        }
        return filteredList;
View Full Code Here

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

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

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

  public void addDSLMapping(AbstractDSLMappingEntry entry) {
    DSLSentence sen = new DSLSentence();
    sen.sentence = entry.getSentence();
    if (entry.getSection() == DSLMappingEntry.CONDITION) {
      this.conditionDSLSentences.add(sen);
    } else if (entry.getSection() == DSLMappingEntry.CONSEQUENCE) {
      this.actionDSLSentences.add(sen);
View Full Code Here

TOP

Related Classes of org.drools.guvnor.client.modeldriven.brl.DSLSentence

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.