Package com.simonepezzano.hshare.dialogs

Examples of com.simonepezzano.hshare.dialogs.AttributesDialog


  /**
   * Opens the editing window
   * @param el the HShare descriptor we want to edit
   */
  public void startEdit(Element el){
    AttributesDialog ad = new AttributesDialog(StuffComposite.this.getShell(),el);
    ad.setLocation(Statics.getOriginForCenter(AttributesDialog.WIDTH, AttributesDialog.HEIGHT));
    HLog.facelogger.debug("Starting properties editing");
    ad.addDisposeListener(new DisposeListener(){
      public void widgetDisposed(DisposeEvent e) {
        HLog.facelogger.debug("Properties editing finished, refreshing contents");
        tv.refresh();
      }
    });
    ad.open();
  }
View Full Code Here

TOP

Related Classes of com.simonepezzano.hshare.dialogs.AttributesDialog

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.