Skip to content

Commit 24bc5ad

Browse files
committed
More javadoc
Signed-off-by: Squareys <[email protected]>
1 parent 8d9bfd4 commit 24bc5ad

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

org.knime.scijava.commands/src/org/knime/scijava/commands/settings/models/SettingsModelColumnSelection.java

+11-3
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,21 @@ public class SettingsModelColumnSelection extends SettingsModelString {
1212

1313
private DataTableSpec spec;
1414

15+
/**
16+
* Constructor.
17+
*
18+
* @param configName
19+
* Name of the setting
20+
* @param defaultValue
21+
* Default value
22+
*/
1523
public SettingsModelColumnSelection(final String configName,
1624
final String defaultValue) {
1725
super(configName, defaultValue);
1826
}
1927

2028
/**
21-
* Set data table spec
29+
* Set data table spec.
2230
*
2331
* @param spec
2432
* the spec to set
@@ -28,9 +36,9 @@ public void setSpec(final DataTableSpec spec) {
2836
}
2937

3038
/**
31-
* Get the contained DataTableSpec
39+
* Get the contained DataTableSpec.
3240
*
33-
* @return the spce
41+
* @return the spec
3442
*/
3543
public DataTableSpec getSpec() {
3644
return spec;

0 commit comments

Comments
 (0)