diff options
author | Matt Windsor <mattwindsor@btinternet.com> | 2011-03-21 20:40:57 +0000 |
---|---|---|
committer | Matt Windsor <mattwindsor@btinternet.com> | 2011-03-21 20:40:57 +0000 |
commit | 2d073129857a42ab4195cd433c8be152e357033f (patch) | |
tree | 967a4bbd1989df9847539a4c4c28e0ca6a79a453 /src/uk/org/ury/library/viewer/LibraryViewer.java | |
parent | 0645ec66e1618ce4b52e56212c79196dd7c5c608 (diff) |
Documentation refresh; ResourceBundle in ShowUtils; probably some format pokery.
Diffstat (limited to 'src/uk/org/ury/library/viewer/LibraryViewer.java')
-rw-r--r-- | src/uk/org/ury/library/viewer/LibraryViewer.java | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/uk/org/ury/library/viewer/LibraryViewer.java b/src/uk/org/ury/library/viewer/LibraryViewer.java index 810bf7e..9548338 100644 --- a/src/uk/org/ury/library/viewer/LibraryViewer.java +++ b/src/uk/org/ury/library/viewer/LibraryViewer.java @@ -33,6 +33,14 @@ import uk.org.ury.protocol.exceptions.InvalidMessageException; /** * Module for investigating the track library. * + * The <code>LibraryViewer</code> and its corresponding user + * interface, <code>LibraryViewerPanel</code>, provide a + * user interface for querying the server's library services + * for track information. + * + * Subclasses of this module provide editing features for + * the track library. + * * @author Matt Windsor */ public class LibraryViewer extends AbstractFrontendModule { @@ -44,7 +52,7 @@ public class LibraryViewer extends AbstractFrontendModule { private LibraryViewerPanel panel; /** - * Construct a new LibraryViewer as a frontend object. + * Constructs a new LibraryViewer as a frontend object. */ public LibraryViewer() { libraryList = new ArrayList<LibraryItem>(); @@ -52,7 +60,7 @@ public class LibraryViewer extends AbstractFrontendModule { } /** - * Run the library viewer frontend. + * Runs the library viewer frontend. */ @Override public FrontendModulePanel runFrontend(FrontendMaster master) { @@ -66,7 +74,7 @@ public class LibraryViewer extends AbstractFrontendModule { } /** - * Do a library search. + * Does a library search. * * This will update the library list to reflect the results of the search. * |