2024-03-30

This commit is contained in:
2024-03-30 19:57:14 +09:00
parent d4055752a9
commit 57cc9ca7ff
90 changed files with 4829 additions and 105 deletions

20
doc/15_slider.md Normal file
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()`