us.ihmc.simulationconstructionset.commands.ViewportSelectorCommandExecutor 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.commands;
public interface ViewportSelectorCommandExecutor
{
public abstract void selectViewport(String name);
public abstract void hideViewport();
public abstract void showViewport();
public abstract boolean isViewportHidden();
public abstract void registerViewportSelectorCommandListener(ViewportSelectorCommandListener commandListener);
public abstract void closeAndDispose();
}