blob: e4dbe61215d0942d2c6106a1891d37097425c07d [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2002, 2003 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.common.ui.services.action.global;
import org.eclipse.gmf.runtime.common.core.service.IOperation;
/**
* The abstract parent of all global action handler operations. This
* class maintains a reference to the <code>IGlobalActionHandlerContext</code>.
*
* @author Vishy Ramaswamy
*/
public abstract class GlobalActionHandlerOperation implements IOperation {
/**
* Attribute for the <code>IGlobalActionHandlerContext</code>.
*/
private final IGlobalActionHandlerContext context;
/**
* Create a GlobalActionHandlerOperation.
*
* @param context attribute for the <code>IGlobalActionHandlerContext</code>
*/
public GlobalActionHandlerOperation(IGlobalActionHandlerContext context) {
assert null != context : "context cannot be null"; //$NON-NLS-1$
this.context = context;
}
/**
* Returns the context.
* @return The <code>context</code> instance variable
*/
public final IGlobalActionHandlerContext getContext() {
return context;
}
}