Formatting
[jalview.git] / src / org / biojava / dasobert / das2 / Das2Capability.java
index 5b5c17c..43fad73 100755 (executable)
  * at:
  *
  *      http://www.biojava.org/
- * 
+ *
  * Created on Feb 9, 2006
  *
  */
 package org.biojava.dasobert.das2;
 
-public interface Das2Capability {
-
-    public boolean equals(Das2Capability other);
-    public int hashCode();
-    
-    public void setCapability(String type);
-    public String getCapability();
-    
-    public void setQueryUri(String id);
-    public String getQueryUri();
-    
-    public void setFormats(String[] formats);
-    public String[] getFormats();
-    
-    /** checks if this capability is actually of das1 style
-     * 
-     * @return boolean true if the capability is in DAS1 style
-     */
-    public boolean isDas1Style();
-    
+public interface Das2Capability
+{
+
+  public boolean equals(Das2Capability other);
+
+  public int hashCode();
+
+  public void setCapability(String type);
+
+  public String getCapability();
+
+  public void setQueryUri(String id);
+
+  public String getQueryUri();
+
+  public void setFormats(String[] formats);
+
+  public String[] getFormats();
+
+  /** checks if this capability is actually of das1 style
+   *
+   * @return boolean true if the capability is in DAS1 style
+   */
+  public boolean isDas1Style();
+
 }