Some simple helpers.
Step 1. Add the JitPack repository in your root build.gradle at the end of repositories:
allprojects {
repositories {
maven { url "https://jitpack.io" }
}
}
Step 2. Add the dependency in the app's build.gradle:
dependencies {
compile 'com.github.edeqa:helpers:4'
}
Step 1. Add the JitPack repository to your build file:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Step 2. Add the dependency:
<dependency>
<groupId>com.github.edeqa</groupId>
<artifactId>helpers</artifactId>
<version>4</version>
</dependency>
See the Javadoc to learn more about the API.
4 - Timer
3 - unified interfaces names: Consumer, BiConsumer, Function, BiFunction; also there are TriConsumer, FourConsumer, TriFunction (all are instead of Runnable1-2-3-4 and Callable1-2-3)
2 - Misc.deepMergeJSON; HtmlGenerator.BUTTON, HtmlGenerator.ONCLICK
1.3 - HtmlGenerator.TABINDEX, HtmlGenerator.SPAN
1.2 - Misc.log, Misc.err; HtmlGenerator#build improved; HtmlGenerator.IMG
1.1 - Misc.toStringDeep
1.0 - fixes
0.1 - initial version
Waytous Framework is licensed under an MIT license. See the LICENSE
file for specifics.