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/IStateEnumerationItem.java')
-rw-r--r--bundles/org.eclipse.wst.ws.service.policy/src/org/eclipse/wst/ws/service/policy/IStateEnumerationItem.java48
1 files changed, 0 insertions, 48 deletions
diff --git a/bundles/org.eclipse.wst.ws.service.policy/src/org/eclipse/wst/ws/service/policy/IStateEnumerationItem.java b/bundles/org.eclipse.wst.ws.service.policy/src/org/eclipse/wst/ws/service/policy/IStateEnumerationItem.java
deleted file mode 100644
index caac5afaf..000000000
--- a/bundles/org.eclipse.wst.ws.service.policy/src/org/eclipse/wst/ws/service/policy/IStateEnumerationItem.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007 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
- *******************************************************************************/
-package org.eclipse.wst.ws.service.policy;
-
-/**
- *
- * This interface is used to describe a state enumeration item that was
- * defined by an enumeration in plugin.xml meta data.
- *
- */
-public interface IStateEnumerationItem
-{
- /**
- *
- * @return returns the ID of this state enumeration item.
- */
- public String getId();
-
- /**
- *
- * @return returns the short name of this state enumeration item.
- */
- public String getShortName();
-
- /**
- *
- * @return returns the long name of this state enumeration item.
- */
- public String getLongName();
-
- /**
- *
- * @return returns true if this enumeration item is the default for this
- * enumeration.
- */
- public boolean isDefault();
-}

Back to the top