return null; // not an external viewer
}
+ @Override
public StructureCommandI saveState(String label)
{
return new StructureCommand("save STATE " + label);
}
+ @Override
public StructureCommandI restoreState(String label)
{
return new StructureCommand("restore STATE " + label);
import java.util.Map;
import java.util.Map.Entry;
+import jalview.bin.Console;
+
/**
* A base class holding methods useful to all classes that implement commands
* for structure viewers
{
return null;
}
+
+ @Override
+ public StructureCommandI saveState(String label)
+ {
+ Console.debug("saveState not implemented");
+ return null;
+ }
+
+ @Override
+ public StructureCommandI restoreState(String label)
+ {
+ Console.debug("restoreState not implemented");
+ return null;
+ }
}
StructureCommandI getResidueAttributes(String attName);
List<StructureCommandI> centerViewOn(List<AtomSpecModel> residues);
+
+ StructureCommandI saveState(String label);
+
+ StructureCommandI restoreState(String label);
}