Package org.drools.lang

Examples of org.drools.lang.Location


    public void testCheckLHSLocationDetermination_INSIDE_CONDITION_OPERATOR1() {
        String input =
            "rule MyRule \n" +
            "    when \n" +
            "        Class ( property ";
        Location location = new CompletionContext(input).getLocation();
        assertEquals(Location.LOCATION_LHS_INSIDE_CONDITION_OPERATOR, location.getType());
        assertEquals("Class", location.getProperty(Location.LOCATION_PROPERTY_CLASS_NAME));
        assertEquals("property", location.getProperty(Location.LOCATION_PROPERTY_PROPERTY_NAME));
    }
View Full Code Here


    public void testCheckLHSLocationDetermination_INSIDE_CONDITION_OPERATOR2() {
        String input =
            "rule MyRule \n" +
            "    when \n" +
            "        Class(property ";
        Location location = new CompletionContext(input).getLocation();
        assertEquals(Location.LOCATION_LHS_INSIDE_CONDITION_OPERATOR, location.getType());
        assertEquals("Class", location.getProperty(Location.LOCATION_PROPERTY_CLASS_NAME));
        assertEquals("property", location.getProperty(Location.LOCATION_PROPERTY_PROPERTY_NAME));
    }
View Full Code Here

    public void testCheckLHSLocationDetermination_INSIDE_CONDITION_OPERATOR3() {
        String input =
            "rule MyRule \n" +
            "    when \n" +
            "        Class ( name : property ";
        Location location = new CompletionContext(input).getLocation();
        assertEquals(Location.LOCATION_LHS_INSIDE_CONDITION_OPERATOR, location.getType());
        assertEquals("Class", location.getProperty(Location.LOCATION_PROPERTY_CLASS_NAME));
        assertEquals("property", location.getProperty(Location.LOCATION_PROPERTY_PROPERTY_NAME));
    }
View Full Code Here

    public void testCheckLHSLocationDetermination_INSIDE_CONDITION_OPERATOR4() {
        String input =
            "rule MyRule \n" +
            "    when \n" +
            "        Class (name:property ";
        Location location = new CompletionContext(input).getLocation();
        assertEquals(Location.LOCATION_LHS_INSIDE_CONDITION_OPERATOR, location.getType());
        assertEquals("Class", location.getProperty(Location.LOCATION_PROPERTY_CLASS_NAME));
        assertEquals("property", location.getProperty(Location.LOCATION_PROPERTY_PROPERTY_NAME));
    }
View Full Code Here

    public void testCheckLHSLocationDetermination_INSIDE_CONDITION_OPERATOR5() {
        String input =
            "rule MyRule \n" +
            "    when \n" +
            "        Class (name:property   ";
        Location location = new CompletionContext(input).getLocation();
        assertEquals(Location.LOCATION_LHS_INSIDE_CONDITION_OPERATOR, location.getType());
        assertEquals("Class", location.getProperty(Location.LOCATION_PROPERTY_CLASS_NAME));
        assertEquals("property", location.getProperty(Location.LOCATION_PROPERTY_PROPERTY_NAME));
    }
View Full Code Here

    public void testCheckLHSLocationDetermination_INSIDE_CONDITION_OPERATOR6() {
        String input =
            "rule MyRule \n" +
            "    when \n" +
            "        Class ( name1 : property1, name : property ";
        Location location = new CompletionContext(input).getLocation();
        assertEquals(Location.LOCATION_LHS_INSIDE_CONDITION_OPERATOR, location.getType());
        assertEquals("Class", location.getProperty(Location.LOCATION_PROPERTY_CLASS_NAME));
        assertEquals("property", location.getProperty(Location.LOCATION_PROPERTY_PROPERTY_NAME));
    }
View Full Code Here

    public void testCheckLHSLocationDetermination_INSIDE_CONDITION_OPERATOR7() {
        String input =
            "rule MyRule \n" +
            "    when \n" +
            "        Class ( name1 : property1 == \"value\", name : property ";
        Location location = new CompletionContext(input).getLocation();
        assertEquals(Location.LOCATION_LHS_INSIDE_CONDITION_OPERATOR, location.getType());
        assertEquals("Class", location.getProperty(Location.LOCATION_PROPERTY_CLASS_NAME));
        assertEquals("property", location.getProperty(Location.LOCATION_PROPERTY_PROPERTY_NAME));
    }
View Full Code Here

    public void testCheckLHSLocationDetermination_INSIDE_CONDITION_OPERATOR8() {
        String input =
            "rule MyRule \n" +
            "    when \n" +
            "        Class ( name1 : property1 == \"value\",property ";
        Location location = new CompletionContext(input).getLocation();
        assertEquals(Location.LOCATION_LHS_INSIDE_CONDITION_OPERATOR, location.getType());
        assertEquals("Class", location.getProperty(Location.LOCATION_PROPERTY_CLASS_NAME));
        assertEquals("property", location.getProperty(Location.LOCATION_PROPERTY_PROPERTY_NAME));
    }
View Full Code Here

        String input =
            "rule MyRule \n" +
            "    when \n" +
            "        Class ( name1 : property1, \n" +
            "            name : property ";
        Location location = new CompletionContext(input).getLocation();
        assertEquals(Location.LOCATION_LHS_INSIDE_CONDITION_OPERATOR, location.getType());
        assertEquals("Class", location.getProperty(Location.LOCATION_PROPERTY_CLASS_NAME));
        assertEquals("property", location.getProperty(Location.LOCATION_PROPERTY_PROPERTY_NAME));
    }
View Full Code Here

    public void testCheckLHSLocationDetermination_INSIDE_CONDITION_ARGUMENT1() {
        String input =
            "rule MyRule \n" +
            "    when \n" +
            "        Class ( property == ";
        Location location = new CompletionContext(input).getLocation();
        assertEquals(Location.LOCATION_LHS_INSIDE_CONDITION_ARGUMENT, location.getType());
        assertEquals("Class", location.getProperty(Location.LOCATION_PROPERTY_CLASS_NAME));
        assertEquals("property", location.getProperty(Location.LOCATION_PROPERTY_PROPERTY_NAME));
        assertEquals("==", location.getProperty(Location.LOCATION_PROPERTY_OPERATOR));
    }
View Full Code Here

TOP

Related Classes of org.drools.lang.Location

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.