import org.inference_web.pml.v2.pmlj.*;
import org.inference_web.pml.v2.pmlp.*;
import org.inference_web.pml.v2.util.*;
import org.inference_web.pml.v2.vocabulary.*;
public class NodeSetGen {
public NodeSetGen () {
try {
// initializing info needed to create NodeSet
String nsURI = "http://inference-web.org/2007/primer/examples/proofs/tonys/answer_2/ns2.owl#ns2";
String conclusionString = "(or (not(subClassOf CRAB ?x)) (type TonysSpecialty ?x))";
String languageURI = "http://inference-web.org/registry/LG/KIF.owl#KIF";
String inferenceRuleURI = "http://inference-web.org/registry/DPR/Told.owl#Told";
String sourceURI = "http://inference-web.org/registry/PER/DLM.owl#DLM";
String sourceUsageTimeStamp = "2005-10-17T10:30:00Z";
// create NodeSet instance
IWNodeSet ns = (IWNodeSet)PMLObjectManager.createPMLObject(PMLJ.NodeSet_lname);
// set NodeSet's identification
ns.setIdentifier(PMLObjectManager.getObjectID(nsURI));
// create Information instance as conclusion
IWInformation conclusion = (IWInformation)PMLObjectManager.createPMLObject(PMLP.Information_lname);
// set conclusion string and its language
conclusion.setHasRawString(conclusionString);
conclusion.setHasLanguage(languageURI);
// assign NodeSet's hasConclusion property value
ns.setHasConclusion(conclusion);
// create InferenceStep instance
IWInferenceStep infStep = (IWInferenceStep)PMLObjectManager.createPMLObject(PMLJ.InferenceStep_lname);
// set inference step position of a list and the rule used
infStep.setHasIndex(0);
infStep.setHasInferenceRule(inferenceRuleURI);
// create SourceUsage instance
IWSourceUsage srcUsg = (IWSourceUsage)PMLObjectManager.createPMLObject(PMLP.SourceUsage_lname);
// set source and usage time
srcUsg.setHasSource(sourceURI);
srcUsg.setHasUsageDateTime(sourceUsageTimeStamp);
// assign InferenceStep's hasSourceUsage property value
infStep.setHasSourceUsage(srcUsg);
// add the InferenceStep to the isConsequentOf property value list
ns.addIsConsequentOf(infStep);
// get NodeSet's content on screen or save it to a file
System.out.println(PMLObjectManager.printToString(ns));
//PMLObjectManager.savePMLObject(ns, "fileName");
} catch (Exception e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
new NodeSetGen ();
}
}