Package org.cfeclipse.frameworks.fusebox.dialogs

Examples of org.cfeclipse.frameworks.fusebox.dialogs.AddFuseDialog


   
  }
  public void addFuseaction(){
    IStructuredSelection selection = (IStructuredSelection)viewer.getSelection();
    FBXCircuit circuit  = (FBXCircuit)selection.getFirstElement();
    AddFuseDialog dialog = new AddFuseDialog(this.getViewSite().getShell());
   
    if(dialog.open() == IDialogConstants.OK_ID){
      circuit.addFuseaction(dialog.getFuseactionName());
    }
   
  }
View Full Code Here

TOP

Related Classes of org.cfeclipse.frameworks.fusebox.dialogs.AddFuseDialog

Copyright © 2018 www.massapicom. 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.