Fix a pile of Javadoc warnings
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / filter / model / TmfFilterOrNode.java
index 0dfa91c4cd0b9b33d453fb38c782c5119afa5f21..fa474e1959c3322939005c33945f1222598672c3 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
@@ -16,17 +16,21 @@ import org.eclipse.linuxtools.tmf.core.event.ITmfEvent;
 \r
 /**\r
  * Filter node for the 'or' operation\r
- * \r
+ *\r
  * @version 1.0\r
  * @author Patrick Tasse\r
  */\r
+@SuppressWarnings("javadoc")\r
 public class TmfFilterOrNode extends TmfFilterTreeNode {\r
 \r
-       public static final String NODE_NAME = "OR"; //$NON-NLS-1$\r
+    public static final String NODE_NAME = "OR"; //$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 TmfFilterOrNode(ITmfFilterTreeNode parent) {\r
                super(parent);\r
        }\r
@@ -36,14 +40,20 @@ public class TmfFilterOrNode extends TmfFilterTreeNode {
                return NODE_NAME;\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 boolean matches(ITmfEvent event) {\r
                for (ITmfFilterTreeNode node : getChildren()) {\r
This page took 0.024201 seconds and 5 git commands to generate.