From 08a1f8ee9f13bf59f2b0b7333e0a157c605c4556 Mon Sep 17 00:00:00 2001 From: jprocter Date: Wed, 12 Nov 2008 11:26:28 +0000 Subject: [PATCH] javadoc --- src/jalview/structure/SelectionListener.java | 37 +++++++++++++------------- src/jalview/structure/SelectionSource.java | 23 ++++++++-------- 2 files changed, 31 insertions(+), 29 deletions(-) diff --git a/src/jalview/structure/SelectionListener.java b/src/jalview/structure/SelectionListener.java index 737c25f..40c44f4 100644 --- a/src/jalview/structure/SelectionListener.java +++ b/src/jalview/structure/SelectionListener.java @@ -1,18 +1,19 @@ -/** - * - */ -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 selection - * @param source - */ - public void selection(jalview.datamodel.SequenceGroup seqsel, jalview.datamodel.ColumnSelection colsel, SelectionSource source); -} +/** + * + */ +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); +} diff --git a/src/jalview/structure/SelectionSource.java b/src/jalview/structure/SelectionSource.java index 985f99c..df383b5 100644 --- a/src/jalview/structure/SelectionSource.java +++ b/src/jalview/structure/SelectionSource.java @@ -1,11 +1,12 @@ -package jalview.structure; - -/** - * an object that can generate selection events - * - * - */ -public interface SelectionSource -{ - -} +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 +{ + +} -- 1.7.10.2