Changeset 18281 for greenstone3/trunk


Ignore:
Timestamp:
2008-12-19T12:22:29+13:00 (15 years ago)
Author:
cc108
Message:

remove the web service button

File:
1 edited

Legend:

Unmodified
Added
Removed
  • greenstone3/trunk/src/java/org/greenstone/admin/gui/Mat.java

    r18279 r18281  
    130130    enable_disable_button = new JButton("Enable");
    131131    enable_disable_button.setName("enable_disable");
     132    enable_disable_button.setVisible(false);
    132133    enable_disable_button.addActionListener(new aListener(this));
    133134    enable_disable_button.setPreferredSize(new Dimension(50,25));
     
    169170    web_tool_checkbox = new JCheckBox("Web OAI Collection Building");
    170171    web_tool_checkbox.setBorder(BorderFactory.createEmptyBorder(0,0,0,0));
     172    web_tool_checkbox.setVisible(false);
    171173    java_tool_checkbox = new JCheckBox("Local Collection Analysis");
    172174    java_tool_checkbox.addItemListener(new checkBoxStatus(this));
    173175    java_tool_checkbox.setBorder(BorderFactory.createEmptyBorder(0,0,0,0));
    174176   
    175     GridLayout gridLayout3 = new GridLayout(4,3);
     177    GridLayout gridLayout3 = new GridLayout(3,3);
    176178    gridLayout3.setVgap(VERTICAL_GAP);
    177179    control_content_pane = new JPanel(gridLayout3);
     
    230232    control_content_pane.add(Box.createRigidArea(new Dimension(10,5)));
    231233    control_content_pane.add(Box.createRigidArea(new Dimension(10,5)));
    232    
    233     control_content_pane.add(web_tool_checkbox);
    234     control_content_pane.add(Box.createRigidArea(new Dimension(10,5)));
    235     control_content_pane.add(Box.createRigidArea(new Dimension(10,5)));
    236    
     234
     235   
     236    //control_content_pane.add(web_tool_checkbox);
     237    control_content_pane.add(Box.createRigidArea(new Dimension(10,5)));
     238    control_content_pane.add(Box.createRigidArea(new Dimension(10,5)));
     239    control_content_pane.add(Box.createRigidArea(new Dimension(10,5)));
     240/*
    237241    JPanel tempPane2 = new JPanel(new BorderLayout());
    238242    tempPane2.add(Box.createRigidArea(new Dimension(18,5)), BorderLayout.WEST);
     
    241245    control_content_pane.add(Box.createRigidArea(new Dimension(10,5)));
    242246    control_content_pane.add(Box.createRigidArea(new Dimension(10,5)));
    243    
     247*/
    244248    control_description_pane.add(install_path);
    245249    control_description_pane.add(install_path_text);
Note: See TracChangeset for help on using the changeset viewer.