X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Forg%2Fbiojava%2Fdasobert%2Fdas2%2FDas2Capability.java;h=43fad73a36c5854d6e003aacfb38f94bd1083347;hb=7bc226b58110fa26d9dbd3f0c78095d06909ffc3;hp=5b5c17c4af69633282e75521e0145abb6a41aa69;hpb=dd74fc4938723fe5ec48d4e5fdcfbe58ac42a48d;p=jalview.git diff --git a/src/org/biojava/dasobert/das2/Das2Capability.java b/src/org/biojava/dasobert/das2/Das2Capability.java index 5b5c17c..43fad73 100755 --- a/src/org/biojava/dasobert/das2/Das2Capability.java +++ b/src/org/biojava/dasobert/das2/Das2Capability.java @@ -16,30 +16,35 @@ * 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(); + }