📄 dbdesignerbaseedithelper.java
字号:
package dbdesigner.diagram.edit.helpers;
import org.eclipse.gmf.runtime.common.core.command.CompositeCommand;
import org.eclipse.gmf.runtime.common.core.command.ICommand;
import org.eclipse.gmf.runtime.emf.type.core.edithelper.AbstractEditHelper;
import org.eclipse.gmf.runtime.emf.type.core.requests.CreateElementRequest;
import org.eclipse.gmf.runtime.emf.type.core.requests.CreateRelationshipRequest;
import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyElementRequest;
import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyReferenceRequest;
import org.eclipse.gmf.runtime.emf.type.core.requests.IEditCommandRequest;
/**
* @generated
*/
public class DbdesignerBaseEditHelper extends AbstractEditHelper {
/**
* @generated
*/
public static final String EDIT_POLICY_COMMAND = "edit policy command"; //$NON-NLS-1$
/**
* @generated
*/
protected ICommand getInsteadCommand(IEditCommandRequest req) {
ICommand epCommand = (ICommand) req.getParameter(EDIT_POLICY_COMMAND);
req.setParameter(EDIT_POLICY_COMMAND, null);
ICommand ehCommand = super.getInsteadCommand(req);
if (epCommand == null) {
return ehCommand;
}
if (ehCommand == null) {
return epCommand;
}
CompositeCommand command = new CompositeCommand(null);
command.add(epCommand);
command.add(ehCommand);
return command;
}
/**
* @generated
*/
protected ICommand getCreateCommand(CreateElementRequest req) {
return null;
}
/**
* @generated
*/
protected ICommand getCreateRelationshipCommand(
CreateRelationshipRequest req) {
return null;
}
/**
* @generated
*/
protected ICommand getDestroyElementCommand(DestroyElementRequest req) {
return null;
}
/**
* @generated
*/
protected ICommand getDestroyReferenceCommand(DestroyReferenceRequest req) {
return null;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -