/* ==========================================================================
* Copyright 2003-2004 Mevenide Team
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* =========================================================================
*/
package org.mevenide.idea.util.actions;
import com.intellij.openapi.actionSystem.AnAction;
import com.intellij.openapi.actionSystem.AnActionEvent;
import com.intellij.openapi.actionSystem.DataConstants;
import com.intellij.openapi.actionSystem.DataContext;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.vfs.VirtualFile;
import javax.swing.*;
/**
* @author Arik
*/
public abstract class AbstractAnAction extends AnAction {
protected AbstractAnAction() {
}
protected AbstractAnAction(final String pText) {
super(pText);
}
protected AbstractAnAction(final String pText,
final String pDescription,
final Icon pIcon) {
super(pText, pDescription, pIcon);
}
protected Project getProject(final AnActionEvent pEvent) {
return (Project) pEvent.getDataContext().getData(DataConstants.PROJECT);
}
@Override
public void update(final AnActionEvent pEvent) {
super.update(pEvent);
}
protected VirtualFile getVirtualFile(final AnActionEvent pEvent) {
final DataContext dc = pEvent.getDataContext();
return (VirtualFile) dc.getData(DataConstants.VIRTUAL_FILE);
}
public abstract void actionPerformed(final AnActionEvent pEvent);
}