public class OWLKBAssertedGraphModel extends OWLKBAbstractGraphModel {
public OWLKBAssertedGraphModel(OWLModel model) {
super(model);
final OWLVizOptions options = OWLVizOptions.getInstance();
model.addKnowledgeBaseListener(new KnowledgeBaseAdapter() {
public void clsCreated(KnowledgeBaseEvent event) {
ArrayList list = new ArrayList(1);
list.add(event.getCls());
fireObjectsAddedEvent(list);
}