blob: 9312542e1b55d797105b70b6fb1ce8f404f06f96 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
****************************************************************************/
package org.eclipse.gmf.runtime.diagram.ui.requests;
import org.eclipse.gef.requests.GroupRequest;
/**
* A group request that originated from the Keyboard due to the use of a hot/shortcut key
* @author bagrodia
* Created on Jul 13, 2004
*/
public class GroupRequestViaKeyboard
extends GroupRequest {
/**
* flag that lets the editpolicy show informational dialog.
*/
private boolean showInformationDialog = true;
/**
* Creates a GroupRequest with the given type.
*
* @param type The type of Request.
*/
public GroupRequestViaKeyboard(Object type) {
super(type);
}
/**
* Default constructor.
*/
public GroupRequestViaKeyboard() {
super();
}
/**
* @return Returns the showInformationDialog.
*/
public boolean isShowInformationDialog() {
return showInformationDialog;
}
/**
* @param showInformationDialog The showInformationDialog to set.
*/
public void setShowInformationDialog(boolean showInformationDialog) {
this.showInformationDialog = showInformationDialog;
}
}