Package com.simonepezzano.actions

Source Code of com.simonepezzano.actions.OpenUsersAction

package com.simonepezzano.actions;

import org.eclipse.jface.action.Action;
import org.eclipse.jface.action.IAction;
import org.eclipse.ui.PlatformUI;

import com.simonepezzano.hshare.dialogs.UsersDialog;

/**
* Opens the users editing dialog
* @author Simone Pezzano
*
*/
public class OpenUsersAction extends Action implements IAction {

  public void run(){
    UsersDialog ud = new UsersDialog(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell());
    ud.open();
  }

}
TOP

Related Classes of com.simonepezzano.actions.OpenUsersAction

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.