us.ihmc.simulationconstructionset.gui.actions.dialogActions.ExportSimulationTo3DMaxAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simulation-construction-set
Show all versions of simulation-construction-set
Simulation Construction Set
package us.ihmc.simulationconstructionset.gui.actions.dialogActions;
import java.awt.event.ActionEvent;
import javax.swing.AbstractAction;
import us.ihmc.simulationconstructionset.gui.dialogConstructors.ExportSimulationTo3DMaxDialogConstructor;
public class ExportSimulationTo3DMaxAction extends AbstractAction
{
private static final long serialVersionUID = 7582935737436636441L;
private ExportSimulationTo3DMaxDialogConstructor constructor;
public ExportSimulationTo3DMaxAction(ExportSimulationTo3DMaxDialogConstructor constructor)
{
super("Export Simulation To 3DMax");
this.constructor = constructor;
}
@Override
public void actionPerformed(ActionEvent actionEvent)
{
constructor.constructDialog();
}
}