Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.ws.service.policy/src/org/eclipse/wst/ws/service/policy/IDescriptor.java')
-rw-r--r--bundles/org.eclipse.wst.ws.service.policy/src/org/eclipse/wst/ws/service/policy/IDescriptor.java103
1 files changed, 0 insertions, 103 deletions
diff --git a/bundles/org.eclipse.wst.ws.service.policy/src/org/eclipse/wst/ws/service/policy/IDescriptor.java b/bundles/org.eclipse.wst.ws.service.policy/src/org/eclipse/wst/ws/service/policy/IDescriptor.java
deleted file mode 100644
index 7eae1a225..000000000
--- a/bundles/org.eclipse.wst.ws.service.policy/src/org/eclipse/wst/ws/service/policy/IDescriptor.java
+++ /dev/null
@@ -1,103 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007, 2008 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
- * yyyymmdd bug Email and other contact information
- * -------- -------- -----------------------------------------------------------
- * 20071024 196997 pmoogk@ca.ibm.com - Peter Moogk
- * 20080515 pmoogk@ca.ibm.com - Peter Moogk
- *******************************************************************************/
-package org.eclipse.wst.ws.service.policy;
-
-/**
- *
- * This interface encapsulates the idea of a description for a service policy.
- *
- */
-public interface IDescriptor
-{
- /**
- * Returns the short name for the descriptor
- * @return returns the short name for the descriptor
- */
- public String getShortName();
-
- /**
- * Sets the short name for the descriptor.
- * @param name
- */
- public void setShortName(String name);
-
- /**
- * Returns the long name for the descriptor.
- * @return returns the long name for the descriptor.
- */
- public String getLongName();
-
- /**
- * Sets the long name for the descriptor.
- * @param longName
- */
- public void setLongName(String longName);
-
- /**
- * Returns the description for this descriptor.
- * @return returns the description for this descriptor.
- */
- public String getDescription();
-
- /**
- * Sets the description for this descriptor.
- * @param description
- */
- public void setDescription(String description);
-
- /**
- * Returns the icon path relative to an icon bundle.
- * @return returns the icon path for this descriptor. This path
- * is relative to the plugin specified by the icon bundle id. This
- * method may return null if there is no icon for this descriptor.
- */
- public String getIconPath();
-
- /**
- * Sets the icon patch for this descriptor.
- *
- * @param iconPath
- */
- public void setIconPath(String iconPath);
-
- /**
- * Returns the icon bundle id.
- * @return returns the bundle ID of a plugin that contains an icon. This
- * method may return null if there is no icon associated with this descriptor.
- */
- public String getIconBundleId();
-
- /**
- *
- * Sets the icon bundle id for this descriptor.
- *
- * @param iconBundleId
- */
- public void setIconBundleId(String iconBundleId);
-
- /**
- * Returns the context help id.
- * @return returns the context help id for this descriptor. This method
- * may return null if no context has been specified.
- */
- public String getContextHelpId();
-
- /**
- * Sets the context help id for this descriptor.
- *
- * @param contextHelpId
- */
- public void setContextHelpId(String contextHelpId);
-}

Back to the top