JAL-1807 explicit imports (jalview.ws.*)
[jalview.git] / src / jalview / ws / dbsources / Rfam.java
index 62f2b28..34fe72f 100644 (file)
  */
 package jalview.ws.dbsources;
 
-import com.stevesoft.pat.Regex;
-
+import jalview.datamodel.DBRefSource;
 import jalview.ws.seqfetcher.DbSourceProxy;
 
+import com.stevesoft.pat.Regex;
+
 /**
  * Contains methods for fetching sequences from Rfam database
  * 
@@ -36,8 +37,8 @@ abstract public class Rfam extends Xfam implements DbSourceProxy
   {
     super();
     // all extensions of this RFAM source base class are DOMAINDB sources
-    addDbSourceProperty(jalview.datamodel.DBRefSource.DOMAINDB);
-    addDbSourceProperty(jalview.datamodel.DBRefSource.ALIGNMENTDB);
+    addDbSourceProperty(DBRefSource.DOMAINDB);
+    addDbSourceProperty(DBRefSource.ALIGNMENTDB);
   }
 
   /*
@@ -72,7 +73,7 @@ abstract public class Rfam extends Xfam implements DbSourceProxy
    * this doesn't work - DbSource is key for the hash of DbSourceProxy instances
    * - 1:many mapping for DbSource to proxy will be lost. * suggest : RFAM is an
    * 'alignment' source - means proxy is higher level than a sequence source.
-   * return jalview.datamodel.DBRefSource.RFAM; }
+   * return DBRefSource.RFAM; }
    */
 
   /*
@@ -112,7 +113,7 @@ abstract public class Rfam extends Xfam implements DbSourceProxy
    */
   public String getXfamSource()
   {
-    return jalview.datamodel.DBRefSource.RFAM;
+    return DBRefSource.RFAM;
   }
 
 }