package application.actions;
import com.mxgraph.swing.mxGraphComponent;
import javax.swing.*;
public abstract class AbstractViewerAction extends AbstractAction {
protected mxGraphComponent graphComponent = null;
public AbstractViewerAction(String name, mxGraphComponent graphComponent) {
super(name);
this.graphComponent = graphComponent;
}
}