JAL-1807 explicit imports (jalview.renderer)
[jalview.git] / src / jalview / commands / CommandI.java
index 954d51f..1679243 100644 (file)
@@ -1,6 +1,6 @@
 /*
- * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2b1)
- * Copyright (C) 2014 The Jalview Authors
+ * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
+ * Copyright (C) $$Year-Rel$$ The Jalview Authors
  * 
  * This file is part of Jalview.
  * 
  */
 package jalview.commands;
 
+import jalview.datamodel.AlignmentI;
+
 public interface CommandI
 {
-  public void doCommand(jalview.datamodel.AlignmentI[] views);
+  public void doCommand(AlignmentI[] views);
 
-  public void undoCommand(jalview.datamodel.AlignmentI[] views);
+  public void undoCommand(AlignmentI[] views);
 
   public String getDescription();