Newer
Older
AlgebraicDataflowArchitectureModel / AlgebraicDataflowArchitectureModel / src / application / actions / AbstractViewerAction.java
Shohei Yamagiwa 17 days ago 372 bytes Format files
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;
	}
}