Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jeffreymorganio/java-swing-alphaslider
A Java Swing implementation of an AlphaSlider.
https://github.com/jeffreymorganio/java-swing-alphaslider
Last synced: 6 days ago
JSON representation
A Java Swing implementation of an AlphaSlider.
- Host: GitHub
- URL: https://github.com/jeffreymorganio/java-swing-alphaslider
- Owner: jeffreymorganio
- License: mit
- Created: 2015-02-27T10:15:38.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-06T17:51:19.000Z (almost 10 years ago)
- Last Synced: 2023-03-22T19:55:53.699Z (almost 2 years ago)
- Language: Java
- Homepage:
- Size: 144 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Java Swing AlphaSlider
An AlphaSlider enables users to select from a list of values, which may or may not be numeric. This is in contrast to the Java Swing JSlider class that deals solely with numeric values.
## Building
Use the following command to build the AlphaSlider with Maven:
```
mvn clean compile
```To create a JAR file, use this command:
```
mvn package
```If you want to add the AlphaSlider JAR to your Maven repository, use this command:
```
mvn install
```## Testing
Use this command to run the project's JUnit tests:
```
mvn test
```## JavaDoc
After building the project, use the following command to generate the JavaDoc for the AlphaSlider:
```
mvn javadoc:javadoc
```Maven will place the JavaDoc in the 'target/site/apidocs’ folder.