private void ConnectKnowledgeBaseBtnMouseClicked( java.awt.event.MouseEvent evt) { // GEN-FIRST:event_ConnectKnowledgeBaseBtnMouseClicked String sPrjFile = ProjectNameTF.getText().trim(); String sLocationURI = sURI + "Location"; Collection errors = new ArrayList(); Date d1 = new Date(); long l1 = d1.getTime(); prj = Project.loadProjectFromFile(sPrjFile, errors); owlModel = (OWLModel) prj.getKnowledgeBase(); kb = prj.getKnowledgeBase(); URI uri = prj.getActiveRootURI(); Collection colNumberOfInstance = kb.getInstances(); lNumberOfInstance = colNumberOfInstance.size(); Date d2 = new Date(); long l2 = d2.getTime(); lLoadedTime = (l2 - l1); theLogger.info("Connected to MySQL in " + lLoadedTime + " ms"); theLogger.info("KB has " + lNumberOfInstance + " instances"); LoggingAreaTA.append("Project has " + lNumberOfInstance + " in total\n"); LoggingAreaTA.append("Project is loaded in " + lLoadedTime + " ms\n"); } // GEN-LAST:event_ConnectKnowledgeBaseBtnMouseClicked
private void BriefInfoBtnMouseClicked( java.awt.event.MouseEvent evt) { // GEN-FIRST:event_BriefInfoBtnMouseClicked // TODO add your handling code here: Collection colNumberOfInstance = kb.getInstances(); long lNumberOfInstance = colNumberOfInstance.size(); LoggingAreaTA.append("Project has " + lNumberOfInstance + " in total"); LoggingAreaTA.append("Project is loaded in " + lLoadedTime + " ms"); } // GEN-LAST:event_BriefInfoBtnMouseClicked
public void actionPerformed(ActionEvent e) { if (_widget.isEditable()) { Collection selections = DisplayUtilities.pickInstances( (Component) _widget, _widget.getAllowedClses(), _dialogTitle); if ((null != selections) && (selections.size() != 0)) { _widget.addValues(selections); } } }
private boolean containInstance(Instance sel, Slot slot, Instance instance) { if (itsInstance == null) return false; Collection instances = sel.getOwnSlotValues(slot); Iterator i = instances.iterator(); while (i.hasNext()) { Instance tmpInstance = (Instance) i.next(); if (tmpInstance.equals(instance)) return true; } return false; }
public Collection search() { if (specification.getType() == null) return null; String slotType = specification.getType(); if (!slotType.toLowerCase().equals("cls")) return null; // Here we first test the function based on the simplest Instance cases ArrayList resultInstances = new ArrayList(); Collection instances = itsInstances; Iterator i = instances.iterator(); Slot slot = itsWidget.getKB().getSlot(specification.getName()); while (i.hasNext()) { Instance instance = (Instance) i.next(); if (testInstance(getTestIndex(specification.getConstraint()), instance, slot)) resultInstances.add(instance); } return resultInstances; }
// This is used for Query test public Collection search(Collection instances, Slot slot, String operation, Object obj) { ArrayList resultInstances = new ArrayList(); Iterator i = instances.iterator(); String value = (String) (((Instance) obj).getBrowserText()); while (i.hasNext()) { Instance instance = (Instance) i.next(); if (testInstance(getTestIndex(operation), instance, slot, value)) resultInstances.add(instance); } return resultInstances; }
private long InstancesCount() { String sIname = ClassNameTF.getText().trim(); long lNumberOfInstance = 0; if (sIname.length() > 0) { String sClassName = ClassNameTF.getText(); try { Cls cls = kb.getCls(sClassName); Collection colInstances = kb.getInstances(cls); lNumberOfInstance = colInstances.size(); } catch (Exception e) { theLogger.severe("Class not found"); } } else { try { Collection colInstances = kb.getInstances(); lNumberOfInstance = colInstances.size(); } catch (Exception e) { theLogger.severe("Class not found"); } } return lNumberOfInstance; }