/*
* Created on Apr 14, 2005
*/
package examples;
/**
* This example shows how to access <code>ServiceParameter</code> and <code>ServiceCategory</code>
* values. Different reasoners will provide different information depending on their capabilities.
* When there is no reasoner associated with the KB, no information about profile can be retrieved
* because it cannot be verified that profile is actually an instance of profile:Profile concept.
* If strict type checking is disabled using <code>OWLConfig.setStrictConversion( false )</code>
* then some information can be retrieved.
*
* @author Evren Sirin
*
*/
public class ServiceParameterExample {
}
OWLConfig.setStrictConversion( false );
}
try {
// Print the ServiceParameters
}
// Print the ServiceCategories
}
} catch(RuntimeException e) {
}
}
}
}