Ignore:
Timestamp:
2004-02-10T18:07:32+13:00 (20 years ago)
Author:
kjdon
Message:

fixed all the javadoc errors. (hope I didn't commit anything I wasn't supposed to)

Location:
trunk/gli/src/org/greenstone/gatherer/cdm
Files:
13 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/cdm/Argument.java

    r6389 r6770  
    246246     * @see org.greenstone.gatherer.msm.ElementWrapper
    247247     * @see org.greenstone.gatherer.msm.MetadataSetManager#getElement(String)
    248      * @see org.greenstone.gatherer.msm.MSMUtils#getValue(Element)
     248     * @see org.greenstone.gatherer.msm.MSMUtils#getValue(Node)
    249249     */
    250250    public String getValue() {
     
    271271     * @see org.greenstone.gatherer.msm.ElementWrapper
    272272     * @see org.greenstone.gatherer.msm.MetadataSetManager#getElement(String)
    273      * @see org.greenstone.gatherer.msm.MSMUtils#getValue(Element)
     273     * @see org.greenstone.gatherer.msm.MSMUtils#getValue(Node)
    274274     */
    275275    public ArrayList getValues() {
  • trunk/gli/src/org/greenstone/gatherer/cdm/ArgumentConfiguration.java

    r6389 r6770  
    835835         * @param two A <strong>JButton</strong> whose enabled state is determined by the listener, or <i>null</i> if no button.
    836836         * @param list A <strong>JList</strong> whose enabled state is determined by the listener, or <i>null</i> if no list.
    837          * @param list A <strong>JComponent</strong> whose enabled state is determined by the listener, or <i>null</i> if no component.
     837         * @param target A <strong>JComponent</strong> whose enabled state is determined by the listener, or <i>null</i> if no component.
    838838         */
    839839        public EnabledListener(JButton one, JButton two, JList list, JComponent target) {
     
    943943        }
    944944        /** Tests two possible ListOption objects for equality. Uses the result from compareTo().
    945          * @param The <strong>Object</strong> which may be equal.
     945         * @param object The <strong>Object</strong> which may be equal.
    946946         * @return <i>true</i> if the objects are equal, <i>false</i> otherwise.
    947947         */
  • trunk/gli/src/org/greenstone/gatherer/cdm/Classifier.java

    r5863 r6770  
    133133    /** Constructor.
    134134     * @param name The name of this classifier as a <strong>String</strong>.
    135      * @param desc A description of this classifier as a <strong>String</strong>.
     135     * @param description A description of this classifier as a <strong>String</strong>.
    136136     * @param super_classifier The super class of this classifier, as a <strong>Classifier</strong>.
    137137     */
     
    167167    /** The assigned classifier constructor.
    168168     * @param element the DOM Element this classifier is based upon
    169      * @param base_classifier the Classifier from the stored library showing details about this classifier, may be null
    170169     */
    171170    public DOMProxyListEntry create(Element element) {
     
    360359
    361360    /** Method to set the value of desc.
    362      * @param desc The new value of desc as a <strong>String</strong>.
     361     * @param description The new value of desc as a <strong>String</strong>.
    363362     */
    364363    public void setDescription(String description) {
  • trunk/gli/src/org/greenstone/gatherer/cdm/CollectionConfiguration.java

    r6539 r6770  
    6767
    6868    /** Find the best insertion position for the given DOM Element. This should try to match command tag, and if found should then try to group by name or type (eg CollectionMeta), or append to end is no such grouping exists (eg PlugIns). Failing a command match it will check against the command order for the best insertion location.
    69      * @param element the command Element to be inserted
     69     * @param target_element the command Element to be inserted
    7070     * @return the Element which the given command should be inserted before, or null to append to end of list
    7171     */
  • trunk/gli/src/org/greenstone/gatherer/cdm/CollectionMeta.java

    r6539 r6770  
    166166
    167167    /** Change the value of value.
    168      * @param value the new value as a String.
     168     * @param raw_value the new value as a String.
    169169     */
    170170    public void setValue(String raw_value) {
  • trunk/gli/src/org/greenstone/gatherer/cdm/DOMProxyListModel.java

    r5756 r6770  
    7575    /** Used to add an element into the underlying dom, and fire the appropriate repaint events.
    7676     * @param index the index where the element should be inserted (relative of the other elements in this proxy list)
    77      * @param element the Element to be inserted
     77     * @param entry the <strong>DOMProxyListEntry</strong> to be inserted
    7878     */
    7979    public synchronized void add(int index, DOMProxyListEntry entry) {
  • trunk/gli/src/org/greenstone/gatherer/cdm/Index.java

    r6539 r6770  
    244244
    245245    /** Method to set the level of this index which can only be used for the default index.
    246      * @param level the new level as an int
     246     * @param new_level the new level as an int
    247247     */
    248248    public void setLevel(int new_level) {
  • trunk/gli/src/org/greenstone/gatherer/cdm/IndexManager.java

    r6539 r6770  
    13911391         * @param  event a DocumentEvent containing information about the text removed
    13921392         */
    1393         public void removeUpdate(DocumentEvent e) {
     1393        public void removeUpdate(DocumentEvent event) {
    13941394        validateAddButton();
    13951395        }
     
    14531453         * @param  event a DocumentEvent containing information about the text removed
    14541454         */
    1455         public void removeUpdate(DocumentEvent e) {
     1455        public void removeUpdate(DocumentEvent event) {
    14561456        validateAddButton();
    14571457        }
  • trunk/gli/src/org/greenstone/gatherer/cdm/LanguageManager.java

    r6539 r6770  
    168168    /** Method to retrieve a certain language object by its code.
    169169     * @param code The two letter code of a language, as a <strong>String</strong>.
    170      * @param assigned_only If <i>true</i> only those languages currently having indexes built for them are checked, otherwise the known languages buffer is checked.
    171170     * @return The <strong>Language</strong> that matches the given code, or <i>null</i> if no such language exists.
    172171     */
  • trunk/gli/src/org/greenstone/gatherer/cdm/PlugIn.java

    r5863 r6770  
    135135    /** The assigned plugin constructor.
    136136     * @param element the DOM Element this plugin is based upon
    137      * @param base_plugin the PlugIn from the stored library showing details about this plugin, may be null
    138137     */
    139138    public DOMProxyListEntry create(Element element) {
     
    315314
    316315    /** Method to set the value of desc.
    317      * @param desc The new value of desc as a <strong>String</strong>.
     316     * @param description The new value of desc as a <strong>String</strong>.
    318317     */
    319318    public void setDescription(String description) {
  • trunk/gli/src/org/greenstone/gatherer/cdm/SearchTypeManager.java

    r6318 r6770  
    443443         * @param  event a DocumentEvent containing information about the text removed
    444444         */
    445         public void removeUpdate(DocumentEvent e) {
     445        public void removeUpdate(DocumentEvent event) {
    446446        validateAddButton();
    447447        }
  • trunk/gli/src/org/greenstone/gatherer/cdm/Subcollection.java

    r5590 r6770  
    142142
    143143    /** Method to get the value of name.
    144      * @param String The value of name as a <strong>String</string>.
     144     * @return String The value of name as a <strong>String</string>.
    145145     */
    146146    public String getName() {
     
    180180
    181181    /** Method to get the value of include.
    182      * @param boolean true if this is an inclusion filter, false otherwise
     182     * @return boolean true if this is an inclusion filter, false otherwise
    183183     */
    184184    public boolean isInclusive() {
  • trunk/gli/src/org/greenstone/gatherer/cdm/SubcollectionIndexManager.java

    r6389 r6770  
    152152
    153153    /** Method to remove all of the subindexes that contain a certain subcollection.
    154      * @param sub the Subcollection that has been removed
     154     * @param subcollection the Subcollection that has been removed
    155155     * @see org.greenstone.gatherer.cdm.Subcollection
    156156     * @see org.greenstone.gatherer.cdm.SubcollectionIndex
     
    170170
    171171    /** Method to set the default subcollection index.
    172      * @param subcollection The <strong>Subcollection</strong> to use as the default index.
     172     * @param index The <strong>SubcollectionIndex</strong> to use as the default index.
    173173     * @see org.greenstone.gatherer.Gatherer
    174174     * @see org.greenstone.gatherer.collection.CollectionManager
     175     * @see org.greenstone.gatherer.cdm.SubcollectionIndex
    175176     */
    176177    public void setDefaultSubcollectionIndex(SubcollectionIndex index) {
Note: See TracChangeset for help on using the changeset viewer.