Ignore:
Timestamp:
2017-02-25T14:46:22+01:00 (8 years ago)
Author:
Don-vip
Message:

add javadoc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/widgets/ButtonColumn.java

    r10755 r11615  
    11// License: GPL. For details, see LICENSE file.
    2 
    32package org.openstreetmap.josm.gui.widgets;
    43
     
    1918
    2019/**
    21  *
    2220 * Class based on:  http://www.camick.com/java/source/ButtonColumn.java
    2321 * https://tips4java.wordpress.com/2009/07/12/table-button-column/
    24  *
     22 * @since 10536
    2523 */
    2624public class ButtonColumn extends AbstractCellEditor implements TableCellRenderer, TableCellEditor, ActionListener {
     
    3836    }
    3937
     38    /**
     39     * Constructs a new {@code ButtonColumn}.
     40     * @param action action
     41     * @param buttonName button name
     42     */
    4043    public ButtonColumn(Action action, String buttonName) {
    4144        this(action);
    4245        this.buttonName = buttonName;
    4346    }
    44 
    4547
    4648    /**
     
    116118        return renderButton;
    117119    }
    118 
    119120}
Note: See TracChangeset for help on using the changeset viewer.