Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkchong2006-07-19 21:21:47 +0000
committerkchong2006-07-19 21:21:47 +0000
commit68cbd143741fb8e651639566bc6ce0bff0e394c0 (patch)
tree58e7a99e2f6ecd797207c3c229ec1f21d487ce25 /bundles/org.eclipse.wst.wsdl.validation/src/org/eclipse/wst/wsdl/validation/internal/ui/ant/Property.java
parentb261893b061ca87a52fefc47449b84ee2c07d9b2 (diff)
downloadwebtools.webservices-200607192144.tar.gz
webtools.webservices-200607192144.tar.xz
webtools.webservices-200607192144.zip
This commit was manufactured by cvs2svn to create tag 'v200607192144'.v200607192144
Diffstat (limited to 'bundles/org.eclipse.wst.wsdl.validation/src/org/eclipse/wst/wsdl/validation/internal/ui/ant/Property.java')
-rw-r--r--bundles/org.eclipse.wst.wsdl.validation/src/org/eclipse/wst/wsdl/validation/internal/ui/ant/Property.java66
1 files changed, 0 insertions, 66 deletions
diff --git a/bundles/org.eclipse.wst.wsdl.validation/src/org/eclipse/wst/wsdl/validation/internal/ui/ant/Property.java b/bundles/org.eclipse.wst.wsdl.validation/src/org/eclipse/wst/wsdl/validation/internal/ui/ant/Property.java
deleted file mode 100644
index bf0654011..000000000
--- a/bundles/org.eclipse.wst.wsdl.validation/src/org/eclipse/wst/wsdl/validation/internal/ui/ant/Property.java
+++ /dev/null
@@ -1,66 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.wsdl.validation.internal.ui.ant;
-
-import org.apache.tools.ant.Task;
-
-/**
- * This class represents a property set on the WSDL validator.
- */
-public class Property extends Task
-{
- private String name = null;
- private String value = null;
-
- /**
- * Set the name of the property.
- *
- * @param name
- * The name of the property.
- */
- public void setName(String name)
- {
- this.name = name;
- }
-
- /**
- * Get the name of the property.
- *
- * @return
- * The name of the property.
- */
- public String getName()
- {
- return name;
- }
-
- /**
- * Set the value of the property.
- *
- * @param value
- * The value of the property.
- */
- public void setValue(String value)
- {
- this.value = value;
- }
-
- /**
- * Get the value of the property.
- *
- * @return
- * The value of the property.
- */
- public String getValue()
- {
- return value;
- }
-}

Back to the top