formatting
[jalview.git] / src / jalview / ws / dbsources / das / api / DasSourceRegistryI.java
index 35e29b2..59760d4 100644 (file)
@@ -10,8 +10,9 @@ import org.biodas.jdas.schema.sources.SOURCE;
 
 /**
  * API for a registry that provides datasources that jalview can access
+ * 
  * @author jprocter
- *
+ * 
  */
 public interface DasSourceRegistryI
 {
@@ -22,9 +23,11 @@ public interface DasSourceRegistryI
 
   jalviewSourceI getSource(String nickname);
 
-  //TODO: re JAL-424 - introduce form where local source is queried for metadata, rather than have it all provided by caller.
-  jalviewSourceI createLocalSource(String uri, String name, boolean sequence,
-          boolean features);
+  // TODO: re JAL-424 - introduce form where local source is queried for
+  // metadata, rather than have it all provided by caller.
+  jalviewSourceI createLocalSource(String uri, String name,
+          boolean sequence, boolean features);
+
   boolean removeLocalSource(jalviewSourceI source);
 
   void refreshSources();
@@ -32,6 +35,7 @@ public interface DasSourceRegistryI
   String getLocalSourceString();
 
   List<jalviewSourceI> resolveSourceNicknames(List<String> sources);
+
   // TODO: refactor to jDAS specific interface
   MultipleConnectionPropertyProviderI getSessionHandler();
 }