Ignore:
Timestamp:
2003-09-23T14:58:18+12:00 (21 years ago)
Author:
mdewsnip
Message:

Partway through tooltip assignment. Made lots of little changes, registered a whole lot more components, removed dead code, fixed help links (with SimpleMenuBars). Lots more of the same to come.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/msm/MSMPrompt.java

    r5349 r5527  
    195195     * @return An object, which is either an Integer specifying what further action should be undertaken, if any, or if the action was replace, returns an Element, which is the attribute Element to replace with the new one
    196196     */
    197     public Object mDEPrompt(Element mde_cur, Element []atts_cur, Element mde_new, Element att_new) {
     197    public Object mDEPrompt(Element mde_cur, Element[] atts_cur, Element mde_new, Element att_new) {
    198198    action = Declarations.NO_ACTION;
    199199    // Construction and configuration
     
    202202    dialog.setSize(MDE_SIZE);
    203203    dialog.setTitle(get("MSMPrompt.Merge_MDE"));
    204     dialog.setJMenuBar(new SimpleMenuBar("6.8"));
     204    dialog.setJMenuBar(new SimpleMenuBar("importingpreviouslyassignedmetadata"));
    205205    JPanel content_pane = (JPanel)dialog.getContentPane();
    206206
     
    305305    dialog.setSize(MDS_SIZE);
    306306    dialog.setTitle(get("MSMPrompt.Merge_MDS"));
    307     dialog.setJMenuBar(new SimpleMenuBar("6.8"));
     307    dialog.setJMenuBar(new SimpleMenuBar("importingpreviouslyassignedmetadata"));
    308308    JPanel content_pane = (JPanel)dialog.getContentPane();
    309309    if(mde_cur != null) {
     
    440440    dialog.setSize(RENAME_SIZE);
    441441    dialog.setTitle(get("MSMPrompt.Rename"));
    442     dialog.setJMenuBar(new SimpleMenuBar("6.8"));
     442    dialog.setJMenuBar(new SimpleMenuBar("importingpreviouslyassignedmetadata"));
    443443    JLabel old_name_label = new JLabel(get("MSMPrompt.Old_Name"));
    444444    old_name_label.setPreferredSize(RENAME_LABEL_SIZE);
     
    551551    dialog.setSize(SELECT_SIZE);
    552552    dialog.setTitle(get("MSMPrompt.Select"));
    553     dialog.setJMenuBar(new SimpleMenuBar("6.8"));
     553    dialog.setJMenuBar(new SimpleMenuBar("importingpreviouslyassignedmetadata"));
    554554
    555555    JButton ok = new JButton(get("General.OK"));
     
    627627    dialog.setSize(SELECT_ELEMENT_SIZE);
    628628    dialog.setTitle(get("MSMPrompt.Select_Element_Title"));
    629     dialog.setJMenuBar(new SimpleMenuBar("6.8"));
     629    dialog.setJMenuBar(new SimpleMenuBar("importingpreviouslyassignedmetadata"));
    630630    JPanel content_pane = (JPanel) dialog.getContentPane();
    631631    JPanel control_pane = new JPanel();
     
    812812    dialog.setSize(SELECT_SET_SIZE);
    813813    dialog.setTitle(get("MSMPrompt.Select_Set_Title"));
    814     dialog.setJMenuBar(new SimpleMenuBar("6.8"));
     814    dialog.setJMenuBar(new SimpleMenuBar("importingpreviouslyassignedmetadata"));
    815815    JPanel content_pane = (JPanel) dialog.getContentPane();
    816816    JPanel control_pane = new JPanel();
Note: See TracChangeset for help on using the changeset viewer.