Changeset 12590


Ignore:
Timestamp:
2006-08-29T14:27:40+12:00 (18 years ago)
Author:
kjdon
Message:

changed all the internal variable declarations so there is not random amounts of space between the name and the = sign

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/gui/GatherPane.java

    r12131 r12590  
    8080    private String NO_COLLECTION_LOADED_CARD = "No collection loaded";
    8181    /** The group encompassing all of the components available as drop targets for drag and drop actions. Required so that only one component renders the ghost and higlights itself as a target, which the other members are restored to their original, pristine, condition. */
    82     private DragGroup group               = null;
     82    private DragGroup group = null;
    8383    /** The tree showing the files within the collection. */
    8484    private CollectionTree collection_tree = null;
    8585    /** The threaded queue that handles the actually movement of files, so that the gui remains responsive. */
    86     private FileQueue file_queue          = null;
     86    private FileQueue file_queue = null;
    8787    /** The filter currently applied to the collection tree. */
    8888    private Filter collection_filter = null;
     
    9090    private Filter workspace_filter = null;
    9191    /** The button used to cancel all pending file queue jobs. */
    92     private JButton stop_action        =  null;
     92    private JButton stop_action =  null;
    9393    /** The button used to create a new folder in the collection tree. */
    94     private JButton new_folder          =  null;
     94    private JButton new_folder =  null;
    9595    /** The label shown at the top of the collection tree. */
    96     private JLabel collection_label    = null;
     96    private JLabel collection_label = null;
    9797    /** The label shown in the status area explaining the file apon which action is taking place. */
    98     private JLabel filename_label        = null;
     98    private JLabel filename_label = null;
    9999    /** The label shown explaining the current state of the file queue thread. */
    100     private JLabel status_label        = null;
     100    private JLabel status_label = null;
    101101    /** The label at the top of the workspace tree. */
    102     private JLabel workspace_label      = null;
     102    private JLabel workspace_label = null;
    103103    /** The panel that contains the collection tree. */
    104     private JPanel collection_pane      = null;
     104    private JPanel collection_pane = null;
    105105    /** The panel that contains the various controls including the status area. */
    106     private JPanel control_pane        = null;
     106    private JPanel control_pane = null;
    107107    /** The panel that contains the workspace tree. */
    108     private JPanel workspace_pane        = null;
     108    private JPanel workspace_pane = null;
    109109    /** The scrollable area into which the collection tree is placed. */
    110     private JScrollPane collection_scroll =  null;
     110    private JScrollPane collection_scroll = null;
    111111    /** The scrollable area into which the workspace tree is placed. */
    112     private JScrollPane workspace_scroll  = null;
     112    private JScrollPane workspace_scroll = null;
    113113    /** A split pane seperating the two trees, allowing for the screen real-estate for each to be changed. */
    114     private JSplitPane tree_pane          = null;
     114    private JSplitPane tree_pane = null;
    115115    /** The minimum size a gui component can become. */
    116     static private Dimension MIN_SIZE   = new Dimension( 90,  90);
     116    static private Dimension MIN_SIZE = new Dimension( 90,  90);
    117117    /** The default size of the status area. */
    118118    static private Dimension STATUS_SIZE = new Dimension(450, 120);
    119119    /** The initial size of the trees. */
    120     static private Dimension TREE_SIZE   = new Dimension(400, 430);
     120    static private Dimension TREE_SIZE = new Dimension(400, 430);
    121121
    122122    /** The tree showing the available source workspace. */
Note: See TracChangeset for help on using the changeset viewer.