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();
}
}