javadoc
authorjprocter <Jim Procter>
Wed, 12 Nov 2008 11:26:28 +0000 (11:26 +0000)
committerjprocter <Jim Procter>
Wed, 12 Nov 2008 11:26:28 +0000 (11:26 +0000)
src/jalview/structure/SelectionListener.java
src/jalview/structure/SelectionSource.java

index 737c25f..40c44f4 100644 (file)
@@ -1,18 +1,19 @@
-/**\r
- * \r
- */\r
-package jalview.structure;\r
-\r
-\r
-/**\r
- * Implemented by objects listening for selection events on SelectionSources \r
- */\r
-public interface SelectionListener\r
-{\r
-  /**\r
-   * method called by the event broadcaster (see jalview.structure.StructureSelectionManager) to pass on a selection event to listeners\r
-   * @param selection\r
-   * @param source\r
-   */\r
-  public void selection(jalview.datamodel.SequenceGroup seqsel, jalview.datamodel.ColumnSelection colsel, SelectionSource source);\r
-}\r
+/**
+ * 
+ */
+package jalview.structure;
+
+
+/**
+ * Implemented by objects listening for selection events on SelectionSources 
+ */
+public interface SelectionListener
+{
+  /**
+   * method called by the event broadcaster (see jalview.structure.StructureSelectionManager) to pass on a selection event to listeners
+   * @param seqsel - group of selected sequences
+   * @param colsel - specific columns in selection
+   * @param source - source of the selection event
+   */
+  public void selection(jalview.datamodel.SequenceGroup seqsel, jalview.datamodel.ColumnSelection colsel, SelectionSource source);
+}
index 985f99c..df383b5 100644 (file)
@@ -1,11 +1,12 @@
-package jalview.structure;\r
-\r
-/**\r
- * an object that can generate selection events\r
- * \r
- *\r
- */\r
-public interface SelectionSource\r
-{\r
-\r
-}\r
+package jalview.structure;
+
+/**
+ * an object that can generate selection events
+ * This is purely a tag for the moment, but there may be
+ * more interrogative methods in future.
+ *
+ */
+public interface SelectionSource
+{
+
+}