Fix a pile of Javadoc warnings
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / filter / model / TmfFilterAndNode.java
index bfb89f1f28ffc748be1c07b83638aadf7341ad85..71559a555baf124646338907ef3ba18ab1735437 100644 (file)
@@ -1,11 +1,11 @@
 /*******************************************************************************\r
  * Copyright (c) 2010 Ericsson\r
- * \r
+ *\r
  * All rights reserved. This program and the accompanying materials are\r
  * made available under the terms of the Eclipse Public License v1.0 which\r
  * accompanies this distribution, and is available at\r
  * http://www.eclipse.org/legal/epl-v10.html\r
- * \r
+ *\r
  * Contributors:\r
  *   Patrick Tasse - Initial API and implementation\r
  *******************************************************************************/\r
@@ -17,29 +17,39 @@ import org.eclipse.linuxtools.tmf.core.event.ITmfEvent;
 \r
 /**\r
  * Filter node for the 'and' operation\r
- * \r
+ *\r
  * @version 1.0\r
  * @author Patrick Tasse\r
  */\r
+@SuppressWarnings("javadoc")\r
 public class TmfFilterAndNode extends TmfFilterTreeNode {\r
 \r
        public static final String NODE_NAME = "AND"; //$NON-NLS-1$\r
        public static final String NOT_ATTR = "not"; //$NON-NLS-1$\r
-       \r
+\r
        private boolean fNot = false;\r
-       \r
+\r
+       /**\r
+        * @param parent the parent node\r
+        */\r
        public TmfFilterAndNode(ITmfFilterTreeNode parent) {\r
                super(parent);\r
        }\r
 \r
+       /**\r
+        * @return the NOT state\r
+        */\r
        public boolean isNot() {\r
                return fNot;\r
        }\r
-       \r
+\r
+       /**\r
+        * @param not the NOT state\r
+        */\r
        public void setNot(boolean not) {\r
                this.fNot = not;\r
        }\r
-       \r
+\r
        @Override\r
        public String getNodeName() {\r
                return NODE_NAME;\r
@@ -76,5 +86,5 @@ public class TmfFilterAndNode extends TmfFilterTreeNode {
                }\r
                return buf.toString();\r
        }\r
-       \r
+\r
 }\r
This page took 0.024665 seconds and 5 git commands to generate.