Changeset 9855


Ignore:
Timestamp:
2005-05-11T14:35:21+12:00 (19 years ago)
Author:
mdewsnip
Message:

Minor changes.

Location:
trunk/gli/src/org/greenstone/gatherer
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/feedback/FeedbackInterface.java

    r7315 r9855  
    323323
    324324            if (paneArray.size() == 0)
    325             System.out.println("There is no panel here!!");
     325            System.out.println("There is no panel here!");
    326326            else
    327327            {
     
    976976    {
    977977    if (paneArray.size() == 0)
    978         System.out.println("There is no panel here!!");
     978        System.out.println("There is no panel here!");
    979979    else
    980980        {
  • trunk/gli/src/org/greenstone/gatherer/feedback/SelectPicture.java

    r7741 r9855  
    397397        pane.setBorder(new EmptyBorder(15,15,15,15));
    398398
    399         if ((window == null) || (screen == null)) {System.out.println("How come!!");}
     399        if ((window == null) || (screen == null)) {System.out.println("How come!");}
    400400        else
    401401        {
  • trunk/gli/src/org/greenstone/gatherer/file/FileQueue.java

    r9021 r9855  
    487487                }
    488488                else {
    489                 DebugStream.println("I've already done this job twice. I refuse to requeue it again!!");
     489                DebugStream.println("I've already done this job twice. I refuse to requeue it again!");
    490490                }
    491491            }
  • trunk/gli/src/org/greenstone/gatherer/gems/GEMS.java

    r9793 r9855  
    11771177                        public void run() {
    11781178                        mds_tree.expandPath(new TreePath(current_node.getPath())); //Expand element so can see subelement.
    1179                         mds_tree.getSelectionModel().setSelectionPath(new TreePath(new_node)); //works, but node on tree doesn't look hilighted!!
     1179                        mds_tree.getSelectionModel().setSelectionPath(new TreePath(new_node)); //works, but node on tree doesn't look hilighted!
    11801180                        }
    11811181                    });
     
    17921792        else
    17931793        {
    1794             System.err.println("Tried to remove attribute, but current_attribute == -1!!"); //This should not happen
     1794            System.err.println("Tried to remove attribute, but current_attribute == -1!"); //This should not happen
    17951795        }
    17961796    }
     
    21982198           
    21992199           This could be updated to delete multiple nodes/leaves in the futere.
    2200            But not me and not today!!
     2200           But not me and not today!
    22012201        */
    22022202        TreePath[] multiSelectionCheck = mds_tree.getSelectionPaths();
     
    25462546     
    25472547      public void actionPerformed(ActionEvent e) {
    2548       //This should never happen!!
     2548      //This should never happen!
    25492549      System.err.println("Error: actionPerformed was called in class PopupListener. This should never happen!");
    25502550      }
  • trunk/gli/src/org/greenstone/gatherer/gems/MetadataSet.java

    r9170 r9855  
    391391        }
    392392       
    393     } catch(Exception DOMException) { //The element does not exist!!
     393    } catch(Exception DOMException) { //The element does not exist!
    394394        System.err.println("Exception: '"+ DOMException + "' occured. Cannot remove element because it does not exist.");
    395395    }
  • trunk/gli/src/org/greenstone/gatherer/gui/GatherPane.java

    r9113 r9855  
    542542        }
    543543        }
    544         // finally we have the correct selection paths!!
     544        // finally we have the correct selection paths!
    545545       
    546546        // Create an appropriate context menu, based on what is selected
     
    690690        ExplodeMetadataPrompt emp = new ExplodeMetadataPrompt(node.getFile());
    691691        //emp.destroy();
    692         // !! TO DO: Open dialog with options to explode_metadata_databases.pl, then run it
    693692        }
    694693
  • trunk/gli/src/org/greenstone/gatherer/gui/MetadataImportMappingPrompt.java

    r9101 r9855  
    6969    Dictionary.registerBoth(ignore_button, "MIMP.Ignore", "MIMP.Ignore_Tooltip");
    7070
    71     // add instructions!!!
    72     // "MIMP.Instructions", args: source elem
     71    // !! Need to add instructions: "MIMP.Instructions", args: source elem
    7372    metadata_elements_combobox = new GComboBox();
    7473
Note: See TracChangeset for help on using the changeset viewer.