* @see org.eclipse.jface.action.Action#run()
*/
public void run()
{
// Instantiates and initializes the wizard
CommitChangesWizard wizard = new CommitChangesWizard();
wizard.init( PlatformUI.getWorkbench(), StructuredSelection.EMPTY );
// Instantiates the wizard container with the wizard and opens it
WizardDialog dialog = new WizardDialog( PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(), wizard );
dialog.create();
dialog.open();
}