node: change javadoc element order to Atclause order
The default configuration of the AtclauseOrder is a bit strange.
This commit is contained in:
parent
5c129b54b8
commit
37247e93bc
4 changed files with 8 additions and 8 deletions
|
@ -11,9 +11,9 @@ import java.util.Set;
|
|||
* An abstract node item, providing default implementations for most read-only
|
||||
* 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> {
|
||||
|
||||
|
|
|
@ -11,9 +11,9 @@ import java.util.Set;
|
|||
* getData()} they could then modify the original data within the node. This
|
||||
* 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> {
|
||||
|
||||
|
|
|
@ -7,9 +7,9 @@ import java.util.Set;
|
|||
/**
|
||||
* 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> {
|
||||
|
||||
|
|
|
@ -12,9 +12,9 @@ import java.util.function.Function;
|
|||
/**
|
||||
* 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> {
|
||||
|
||||
|
|
Loading…
Reference in a new issue