Ignore:
Timestamp:
2008-04-30T17:00:38+12:00 (16 years ago)
Author:
oranfry
Message:

deleting unneeded compiled classes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • release-kits/shared/ant-installer/src/org/tp23/antinstaller/renderer/swing/TargetInputRenderer.java

    r15206 r15311  
    3838
    3939    protected AILabel fieldLabel = new AILabel();
     40    protected AIShortLabel sizeLabel = new AIShortLabel();
    4041    protected JCheckBox targetCheckBox = new JCheckBox();
     42
    4143
    4244    public TargetInputRenderer() {
     
    8082    private void jbInit() throws Exception {
    8183        fieldLabel.setText(outputField.getDisplayText());
     84        sizeLabel.setText(outputField.getDiskRequirement());
     85        sizeLabel.setMinimumSize( new Dimension( 80, 0 ) );
    8286        targetCheckBox.setSelected(InputField.isTrue(outputField.getDefaultValue()));
    8387        if(InputField.isTrue(outputField.getForce())){
     
    9498    public int addSelf(JPanel content,GBCF cf,  int row,boolean overflow) {
    9599
    96         JLabel h = new JLabel("help");
    97         h.setToolTipText(outputField.getExplanatoryText());
    98100
    99         JPanel p, pp;
     101        JLabel hlp = new JLabel("help");
     102        hlp.setToolTipText(outputField.getExplanatoryText());
    100103
    101         pp = new JPanel(new FlowLayout(FlowLayout.LEFT));
    102         pp.add( targetCheckBox );
    103         pp.add( h );
     104        JPanel p;
    104105
    105         p = new JPanel(new BorderLayout());
    106         p.add( fieldLabel, BorderLayout.WEST );
    107         p.add( pp, BorderLayout.CENTER );
     106        p = new JPanel(new FlowLayout(FlowLayout.LEFT));
     107        p.add( fieldLabel );
     108        p.add( sizeLabel );
     109        p.add( targetCheckBox );
     110        p.add( hlp );
    108111        content.add(p);
    109112
    110         p = new JPanel();
    111         p.setMinimumSize( new Dimension(0,1) );
    112         content.add(p);
    113 
    114 
    115        
    116         //if(overflow){
    117         //  targetCheckBox.setOverflow(SizeConstants.OVERFLOW_FIELD_SIZE);
    118         //}
    119113        return ++row;
    120114    }
Note: See TracChangeset for help on using the changeset viewer.