2425262728293031
* @author Evren Sirin */ public class TBoxFactory { public static TBox createTBox( KnowledgeBase kb ) { return PelletOptions.USE_LEGACY_TBOX ? new TBoxExpImpl( kb ) : new TBoxImpl( kb ); }