node: change javadoc element order to Atclause order

The default configuration of the AtclauseOrder is a bit strange.
This commit is contained in:
Paul Campbell 2016-09-04 18:44:29 +01:00
parent 5c129b54b8
commit 37247e93bc
4 changed files with 8 additions and 8 deletions

View file

@ -11,9 +11,9 @@ import java.util.Set;
* An abstract node item, providing default implementations for most read-only * An abstract node item, providing default implementations for most read-only
* operations. * operations.
* *
* @param <T> the type of data stored in each node * @author Paul Campbell
* *
* @author pcampbell * @param <T> the type of data stored in each node
*/ */
abstract class AbstractNodeItem<T> implements Node<T> { abstract class AbstractNodeItem<T> implements Node<T> {

View file

@ -11,9 +11,9 @@ import java.util.Set;
* getData()} they could then modify the original data within the node. This * getData()} they could then modify the original data within the node. This
* wouldn't affect the integrity of the node tree structure, however.</p> * wouldn't affect the integrity of the node tree structure, however.</p>
* *
* @param <T> the type of data stored in each node * @author Paul Campbell
* *
* @author pcampbell * @param <T> the type of data stored in each node
*/ */
final class ImmutableNodeItem<T> extends AbstractNodeItem<T> { final class ImmutableNodeItem<T> extends AbstractNodeItem<T> {

View file

@ -7,9 +7,9 @@ import java.util.Set;
/** /**
* An interface for tree node items. * An interface for tree node items.
* *
* @param <T> the type of data held in each node * @author Paul Campbell
* *
* @author pcampbell * @param <T> the type of data held in each node
*/ */
public interface Node<T> { public interface Node<T> {

View file

@ -12,9 +12,9 @@ import java.util.function.Function;
/** /**
* Represents a tree of nodes. * Represents a tree of nodes.
* *
* @param <T> the type of data stored in each node * @author Paul Campbell
* *
* @author pcampbell * @param <T> the type of data stored in each node
*/ */
class NodeItem<T> implements Node<T> { class NodeItem<T> implements Node<T> {