Skip to content

Commit

Permalink
Updates for v1.25 release
Browse files Browse the repository at this point in the history
Some minor JavaDoc fixes
  • Loading branch information
mgarin committed Oct 28, 2013
1 parent 643122b commit 7fce75d
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 18 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions build/version.properties
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions src/com/alee/extended/tree/AsyncTreeDataProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ public interface AsyncTreeDataProvider<E extends AsyncUniqueNode>
* 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<E> listener );

Expand Down
6 changes: 3 additions & 3 deletions src/com/alee/extended/tree/WebAsyncTree.java
Original file line number Diff line number Diff line change
Expand Up @@ -710,10 +710,10 @@ protected void fireChildsLoadCompleted ( final E parent, final List<E> 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 )
Expand All @@ -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 )
{
Expand Down
8 changes: 6 additions & 2 deletions src/com/alee/extended/tree/WebCheckBoxTree.java
Original file line number Diff line number Diff line change
Expand Up @@ -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 )
{
Expand All @@ -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 )
{
Expand Down
4 changes: 2 additions & 2 deletions src/com/alee/extended/tree/sample/SampleDataProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -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<SampleNode> listener )
Expand Down
2 changes: 1 addition & 1 deletion src/com/alee/laf/resources/version.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<VersionInfo name="WebLaF" version="1" build="25" type="beta" date="15.10.2013" />
<VersionInfo name="WebLaF" version="1" build="26" type="beta" date="28.10.2013" />

0 comments on commit 7fce75d

Please sign in to comment.