diff --git a/README.md b/README.md index cb21ec3fc..296caa902 100644 --- a/README.md +++ b/README.md @@ -23,12 +23,12 @@ https://github.com/mgarin/weblaf/releases Here are the direct links for the latest release: -1. [**weblaf-1.24.jar**](https://github.com/mgarin/weblaf/releases/download/v1.24/weblaf-1.24.jar) - library jar -2. [**weblaf-simple-1.24.jar**](https://github.com/mgarin/weblaf/releases/download/v1.24/weblaf-simple-1.24.jar) - library jar without dependencies -3. [**weblaf-src-1.24.zip**](https://github.com/mgarin/weblaf/releases/download/v1.24/weblaf-src-1.24.zip) - project sources zip -4. [**weblaf-demo-1.24.jar**](https://github.com/mgarin/weblaf/releases/download/v1.24/weblaf-demo-1.24.jar) - executable demo jar -5. [**weblaf-javadoc-1.24.zip**](https://github.com/mgarin/weblaf/releases/download/v1.24/weblaf-javadoc-1.24.zip) - JavaDoc zip -6. [**ninepatch-editor-1.24.jar**](https://github.com/mgarin/weblaf/releases/download/v1.24/ninepatch-editor-1.24.jar) - executable 9-patch editor jar +1. [**weblaf-1.25.jar**](https://github.com/mgarin/weblaf/releases/download/v1.25/weblaf-1.25.jar) - library jar +2. [**weblaf-simple-1.25.jar**](https://github.com/mgarin/weblaf/releases/download/v1.25/weblaf-simple-1.25.jar) - library jar without dependencies +3. [**weblaf-src-1.25.zip**](https://github.com/mgarin/weblaf/releases/download/v1.25/weblaf-src-1.25.zip) - project sources zip +4. [**weblaf-demo-1.25.jar**](https://github.com/mgarin/weblaf/releases/download/v1.25/weblaf-demo-1.25.jar) - executable demo jar +5. [**weblaf-javadoc-1.25.zip**](https://github.com/mgarin/weblaf/releases/download/v1.25/weblaf-javadoc-1.25.zip) - JavaDoc zip +6. [**ninepatch-editor-1.25.jar**](https://github.com/mgarin/weblaf/releases/download/v1.25/ninepatch-editor-1.25.jar) - executable 9-patch editor jar Roadmap diff --git a/build/version.properties b/build/version.properties index 6d9878bae..de3253354 100644 --- a/build/version.properties +++ b/build/version.properties @@ -1,3 +1,3 @@ -#Tue Oct 15 16:29:46 MSK 2013 -build.number=25 +#Mon Oct 28 20:49:53 MSK 2013 +build.number=26 version.number=1 diff --git a/src/com/alee/extended/tree/AsyncTreeDataProvider.java b/src/com/alee/extended/tree/AsyncTreeDataProvider.java index 09dfbf817..e44e9f96f 100644 --- a/src/com/alee/extended/tree/AsyncTreeDataProvider.java +++ b/src/com/alee/extended/tree/AsyncTreeDataProvider.java @@ -43,8 +43,8 @@ public interface AsyncTreeDataProvider * When you finish loading childs for the specified node or you failed to load them, simply inform the listener about that. * This request uses a separate thread and might take a lot of time to process without having any UI issues. * - * @param node parent node - * @return list of child nodes + * @param node parent node + * @param listener childs loading progress listener */ public void loadChilds ( E node, ChildsListener listener ); diff --git a/src/com/alee/extended/tree/WebAsyncTree.java b/src/com/alee/extended/tree/WebAsyncTree.java index 8e6045d46..800df33b2 100644 --- a/src/com/alee/extended/tree/WebAsyncTree.java +++ b/src/com/alee/extended/tree/WebAsyncTree.java @@ -710,10 +710,10 @@ protected void fireChildsLoadCompleted ( final E parent, final List childs ) } /** - * Invoked when childs load operation finishes. + * Invoked when childs load operation fails. * * @param parent node which childs were loaded - * @param childs loaded child nodes + * @param cause childs load failure cause */ @Override public void childsLoadFailed ( final E parent, final Throwable cause ) @@ -725,7 +725,7 @@ public void childsLoadFailed ( final E parent, final Throwable cause ) * Fires childs load complete event. * * @param parent node which childs were loaded - * @param childs loaded child nodes + * @param cause childs load failure cause */ protected void fireChildsLoadFailed ( final E parent, final Throwable cause ) { diff --git a/src/com/alee/extended/tree/WebCheckBoxTree.java b/src/com/alee/extended/tree/WebCheckBoxTree.java index e94619461..0212e9ce1 100644 --- a/src/com/alee/extended/tree/WebCheckBoxTree.java +++ b/src/com/alee/extended/tree/WebCheckBoxTree.java @@ -629,7 +629,9 @@ public boolean isCheckingByUserEnabled () } /** - * {@inheritDoc} + * Adds check state change listener. + * + * @param listener check state change listener to add */ public void addCheckStateChangeListener ( final CheckStateChangeListener listener ) { @@ -641,7 +643,9 @@ public void addCheckStateChangeListener ( final CheckStateChangeListener listene } /** - * {@inheritDoc} + * Removes check state change listener. + * + * @param listener check state change listener to remove */ public void removeCheckStateChangeListener ( final CheckStateChangeListener listener ) { diff --git a/src/com/alee/extended/tree/sample/SampleDataProvider.java b/src/com/alee/extended/tree/sample/SampleDataProvider.java index 39c2c6c60..73a635446 100644 --- a/src/com/alee/extended/tree/sample/SampleDataProvider.java +++ b/src/com/alee/extended/tree/sample/SampleDataProvider.java @@ -45,8 +45,8 @@ public SampleNode getRoot () /** * Returns sample child nodes for specified asynchronous tree node. * - * @param parent childs parent node - * @return list of child nodes + * @param parent childs parent node + * @param listener childs loading progress listener */ @Override public void loadChilds ( final SampleNode parent, final ChildsListener listener ) diff --git a/src/com/alee/laf/resources/version.xml b/src/com/alee/laf/resources/version.xml index 7a1059e54..34b29aa99 100644 --- a/src/com/alee/laf/resources/version.xml +++ b/src/com/alee/laf/resources/version.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file