2024-06-12

This commit is contained in:
2024-06-12 13:10:10 +09:00
parent 57cc9ca7ff
commit 7e1d726c23
44 changed files with 146 additions and 31 deletions

View File

@@ -0,0 +1,20 @@
# Slider
* `JSlider(int,int,int,int)` : 방향, 최소값, 최대값, 초기값
* `getValue()` / `setValue(int)`
* `getOrientation()` / `setOrientation(int)` : JSlider.HORIZONTAL | VERTICAL
* `getInverted()` / `setInverted(boolean)`
* `getMinimum()` / `setMinimum(int)` / `getMaximum()` / `setMaximum(int)`
* `getModel()` / `setModel(BoundedRangeModel)` : DefaultBoundedRangeModel implements BoundedRangeModel
* `getMajorTickSpacing()` / `setMajorTickSpacing(int)`
* `getMinorTickSpacing()` / `setMinorTickSpacing(int)`
* `getPaintTicks()` / `setPaintTicks(boolean)`
* `getPaintLabels()` / `setPaintLabels()`
* `getLabelTable()` / `setLabelTable(Dictionary)`
* `Hashtable createStandardLabels(int)` / `Hashtable createStandardLabels(int,int)`
* `setFont(Font)`
* `addChangeListener()`
* `boolean getValueIsAdjusting()`