Package org.plugtree.examples.model

Examples of org.plugtree.examples.model.Person


        // Engine
        KnowledgeRuntimeLoggerFactory.newConsoleLogger(ksession);


        // Create a Person
        Person person = new Person("Salaboy!");
        // Create a Pet
        Pet pet = new Pet("mittens", "on a limb", Pet.PetType.CAT);
        // Set the Pet to the Person
        person.setPet(pet);

        // Now we will insert the Pet and the Person into the KnowledgeSession
        ksession.insert(pet);
        ksession.insert(person);
View Full Code Here

TOP

Related Classes of org.plugtree.examples.model.Person

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.