summaryrefslogtreecommitdiffstats
path: root/rba.tool.core/src/rba/tool/core/util/data/ExCommentLabel.java
blob: c83f03aaab5d584a49c027c8eb5c9fc67155a544 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package rba.tool.core.util.data;

public class ExCommentLabel {

    private final String label;

    private final int columnWidth;

    public ExCommentLabel(String label, int columnWidth) {
        this.label = label;
        this.columnWidth = columnWidth;
    }

    public String getLabel() {
        return label;
    }

    public int getColumnWidth() {
        return columnWidth;
    }
}