Modified: 
jakarta/jmeter/trunk/src/core/org/apache/jmeter/assertions/gui/AbstractAssertionGui.java
URL: 
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/src/core/org/apache/jmeter/assertions/gui/AbstractAssertionGui.java?rev=674351&r1=674350&r2=674351&view=diff
==============================================================================
--- 
jakarta/jmeter/trunk/src/core/org/apache/jmeter/assertions/gui/AbstractAssertionGui.java
 (original)
+++ 
jakarta/jmeter/trunk/src/core/org/apache/jmeter/assertions/gui/AbstractAssertionGui.java
 Sun Jul  6 14:47:12 2008
@@ -13,7 +13,7 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
+ *
  */
 
 package org.apache.jmeter.assertions.gui;
@@ -28,36 +28,36 @@
 
 /**
  * This is the base class for JMeter GUI components which manage assertions.
- * 
+ *
  * @author Michael Stover
  * @version $Revision$
  */
 public abstract class AbstractAssertionGui extends AbstractJMeterGuiComponent {
-       /**
-        * When a user right-clicks on the component in the test tree, or 
selects
-        * the edit menu when the component is selected, the component will be 
asked
-        * to return a JPopupMenu that provides all the options available to the
-        * user from this component.
-        * <p>
-        * This implementation returns menu items appropriate for most assertion
-        * components.
-        * 
-        * @return a JPopupMenu appropriate for the component.
-        */
-       public JPopupMenu createPopupMenu() {
-               return MenuFactory.getDefaultAssertionMenu();
-       }
-
-       /**
-        * This is the list of menu categories this gui component will be 
available
-        * under. This implementation returns
-        * [EMAIL PROTECTED] 
org.apache.jmeter.gui.util.MenuFactory#ASSERTIONS}, which is
-        * appropriate for most assertion components.
-        * 
-        * @return a Collection of Strings, where each element is one of the
-        *         constants defined in MenuFactory
-        */
-       public Collection getMenuCategories() {
-               return Arrays.asList(new String[] { MenuFactory.ASSERTIONS });
-       }
+    /**
+     * When a user right-clicks on the component in the test tree, or selects
+     * the edit menu when the component is selected, the component will be 
asked
+     * to return a JPopupMenu that provides all the options available to the
+     * user from this component.
+     * <p>
+     * This implementation returns menu items appropriate for most assertion
+     * components.
+     *
+     * @return a JPopupMenu appropriate for the component.
+     */
+    public JPopupMenu createPopupMenu() {
+        return MenuFactory.getDefaultAssertionMenu();
+    }
+
+    /**
+     * This is the list of menu categories this gui component will be available
+     * under. This implementation returns
+     * [EMAIL PROTECTED] org.apache.jmeter.gui.util.MenuFactory#ASSERTIONS}, 
which is
+     * appropriate for most assertion components.
+     *
+     * @return a Collection of Strings, where each element is one of the
+     *         constants defined in MenuFactory
+     */
+    public Collection getMenuCategories() {
+        return Arrays.asList(new String[] { MenuFactory.ASSERTIONS });
+    }
 }
\ No newline at end of file



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to