Package uk.ac.man.cs.mig.coode.owlviz.ui

Examples of uk.ac.man.cs.mig.coode.owlviz.ui.ClassRadiusDialog.showDialog()


  /**
   * Invoked when an action occurs.
   */
  public void actionPerformed(ActionEvent e) {
    ClassRadiusDialog dlg = new ClassRadiusDialog(this.owner, true);
    int retVal = dlg.showDialog();
    if(retVal == OKCancelDialog.OPTION_APPROVE) {
      Object selObj = tab.getSelectionModel().getSelectedClass();
      if(selObj != null) {
        if(selObj instanceof OWLNamedClass) {
          int radius = dlg.getClassRadius();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.