View Javadoc
1   ///////////////////////////////////////////////////////////////////////////////////////////////
2   // checkstyle: Checks Java source code and other text files for adherence to a set of rules.
3   // Copyright (C) 2001-2024 the original author or authors.
4   //
5   // This library is free software; you can redistribute it and/or
6   // modify it under the terms of the GNU Lesser General Public
7   // License as published by the Free Software Foundation; either
8   // version 2.1 of the License, or (at your option) any later version.
9   //
10  // This library is distributed in the hope that it will be useful,
11  // but WITHOUT ANY WARRANTY; without even the implied warranty of
12  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  // Lesser General Public License for more details.
14  //
15  // You should have received a copy of the GNU Lesser General Public
16  // License along with this library; if not, write to the Free Software
17  // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  ///////////////////////////////////////////////////////////////////////////////////////////////
19  
20  package com.puppycrawl.tools.checkstyle.checks.javadoc;
21  
22  import java.util.Objects;
23  import java.util.Optional;
24  
25  import com.puppycrawl.tools.checkstyle.api.DetailNode;
26  import com.puppycrawl.tools.checkstyle.utils.JavadocUtil;
27  import com.puppycrawl.tools.checkstyle.utils.UnmodifiableCollectionUtil;
28  
29  /**
30   * Implementation of DetailNode interface that is mutable.
31   *
32   */
33  public class JavadocNodeImpl implements DetailNode {
34  
35      /**
36       * Empty array of {@link DetailNode} type.
37       */
38      public static final JavadocNodeImpl[] EMPTY_DETAIL_NODE_ARRAY = new JavadocNodeImpl[0];
39  
40      /**
41       * Node index among parent's children.
42       */
43      private int index;
44  
45      /**
46       * Node type.
47       */
48      private int type;
49  
50      /**
51       * Node's text content.
52       */
53      private String text;
54  
55      /**
56       * Line number.
57       */
58      private int lineNumber;
59  
60      /**
61       * Column number.
62       */
63      private int columnNumber;
64  
65      /**
66       * Array of child nodes.
67       */
68      private DetailNode[] children;
69  
70      /**
71       * Parent node.
72       */
73      private DetailNode parent;
74  
75      @Override
76      public int getType() {
77          return type;
78      }
79  
80      @Override
81      public String getText() {
82          return text;
83      }
84  
85      @Override
86      public int getLineNumber() {
87          return lineNumber;
88      }
89  
90      @Override
91      public int getColumnNumber() {
92          return columnNumber;
93      }
94  
95      @Override
96      public DetailNode[] getChildren() {
97          return Optional.ofNullable(children)
98                  .map(array -> UnmodifiableCollectionUtil.copyOfArray(array, array.length))
99                  .orElse(EMPTY_DETAIL_NODE_ARRAY);
100     }
101 
102     @Override
103     public DetailNode getParent() {
104         return parent;
105     }
106 
107     @Override
108     public int getIndex() {
109         return index;
110     }
111 
112     /**
113      * Sets node's type.
114      *
115      * @param type Node's type.
116      */
117     public void setType(int type) {
118         this.type = type;
119     }
120 
121     /**
122      * Sets node's text content.
123      *
124      * @param text Node's text content.
125      */
126     public void setText(String text) {
127         this.text = text;
128     }
129 
130     /**
131      * Sets line number.
132      *
133      * @param lineNumber Line number.
134      */
135     public void setLineNumber(int lineNumber) {
136         this.lineNumber = lineNumber;
137     }
138 
139     /**
140      * Sets column number.
141      *
142      * @param columnNumber Column number.
143      */
144     public void setColumnNumber(int columnNumber) {
145         this.columnNumber = columnNumber;
146     }
147 
148     /**
149      * Sets array of child nodes.
150      *
151      * @param children Array of child nodes.
152      */
153     public void setChildren(DetailNode... children) {
154         this.children = UnmodifiableCollectionUtil.copyOfArray(children, children.length);
155     }
156 
157     /**
158      * Sets parent node.
159      *
160      * @param parent Parent node.
161      */
162     public void setParent(DetailNode parent) {
163         this.parent = parent;
164     }
165 
166     /**
167      * Sets node's index among parent's children.
168      *
169      * @param index Node's index among parent's children.
170      */
171     public void setIndex(int index) {
172         this.index = index;
173     }
174 
175     @Override
176     public String toString() {
177         return "JavadocNodeImpl["
178                 + "index=" + index
179                 + ", type=" + JavadocUtil.getTokenName(type)
180                 + ", text='" + text + '\''
181                 + ", lineNumber=" + lineNumber
182                 + ", columnNumber=" + columnNumber
183                 + ", children=" + Objects.hashCode(children)
184                 + ", parent=" + parent + ']';
185     }
186 
187 }