~pbeaman/akiban-persistit/buffer-pool-warmup-sorted

« back to all changes in this revision

Viewing changes to src/main/java/com/persistit/ui/InspectorHexPanel.java

Merge from eclipse_canonical_format

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
    private JTextArea _textArea;
35
35
 
36
36
    @Override
37
 
    protected void setup(AdminUI ui, InspectorPanel host) {
 
37
    protected void setup(final AdminUI ui, final InspectorPanel host) {
38
38
        super.setup(ui, host);
39
39
        setLayout(new BorderLayout());
40
40
        _textArea = new JTextArea();
41
41
        _textArea.setEditable(false);
42
42
        _textArea.setFont(_adminUI.getFixedFont());
43
 
        JScrollPane scrollPane = new JScrollPane(_textArea, ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED,
 
43
        final JScrollPane scrollPane = new JScrollPane(_textArea, ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED,
44
44
                ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED);
45
45
        scrollPane.setPreferredSize(new Dimension(500, 100));
46
46
        scrollPane.setBorder(null);
49
49
 
50
50
    @Override
51
51
    protected void refreshed() {
52
 
        Management.LogicalRecord lr = _host.getLogicalRecord();
 
52
        final Management.LogicalRecord lr = _host.getLogicalRecord();
53
53
        if (lr == null) {
54
54
            nullData();
55
55
        } else if (_host.isShowValue()) {
73
73
        // No default button
74
74
    }
75
75
 
76
 
    public void actionPerformed(AdminUI.AdminAction action, ActionEvent ae) {
 
76
    public void actionPerformed(final AdminUI.AdminAction action, final ActionEvent ae) {
77
77
        // no actions.
78
78
    }
79
79