Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.wst.common.frameworks/src/org/eclipse/wst/common/frameworks/internal/enablement/IEnablementIdentifier.java')
-rw-r--r--plugins/org.eclipse.wst.common.frameworks/src/org/eclipse/wst/common/frameworks/internal/enablement/IEnablementIdentifier.java82
1 files changed, 0 insertions, 82 deletions
diff --git a/plugins/org.eclipse.wst.common.frameworks/src/org/eclipse/wst/common/frameworks/internal/enablement/IEnablementIdentifier.java b/plugins/org.eclipse.wst.common.frameworks/src/org/eclipse/wst/common/frameworks/internal/enablement/IEnablementIdentifier.java
deleted file mode 100644
index d73d81280..000000000
--- a/plugins/org.eclipse.wst.common.frameworks/src/org/eclipse/wst/common/frameworks/internal/enablement/IEnablementIdentifier.java
+++ /dev/null
@@ -1,82 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2003, 2005 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
- *******************************************************************************/
-/*
- * Created on Feb 10, 2004
- *
- * To change the template for this generated file go to
- * Window>Preferences>Java>Code Generation>Code and Comments
- */
-package org.eclipse.wst.common.frameworks.internal.enablement;
-
-import java.util.Set;
-
-/**
- * @author schacher
- *
- * To change the template for this generated type comment go to
- * Window>Preferences>Java>Code Generation>Code and Comments
- */
-public interface IEnablementIdentifier {
-
-
- /**
- * Registers an instance of <code>IIdentifierListener</code> to listen for changes to
- * properties of this instance.
- *
- * @param identifierListener
- * the instance to register. Must not be <code>null</code>. If an attempt is made
- * to register an instance which is already registered with this instance, no
- * operation is performed.
- */
- void addIdentifierListener(IEnablementIdentifierListener identifierListener);
-
- /**
- * Returns the set of function group ids that this instance matches.
- * <p>
- * Notification is sent to all registered listeners if this property changes.
- * </p>
- *
- * @return the set of activity ids that this instance matches. This set may be empty, but is
- * guaranteed not to be <code>null</code>. If this set is not empty, it is guaranteed
- * to only contain instances of <code>String</code>.
- */
- Set getFunctionGroupIds();
-
- /**
- * Returns the identifier of this instance.
- *
- * @return the identifier of this instance. Guaranteed not to be <code>null</code>.
- */
- String getId();
-
- /**
- * Returns whether or not this instance is enabled.
- * <p>
- * Notification is sent to all registered listeners if this property changes.
- * </p>
- *
- * @return true, iff this instance is enabled.
- */
- boolean isEnabled();
-
- /**
- * Unregisters an instance of <code>IEnablementIdentifierListener</code> listening for changes
- * to properties of this instance.
- *
- * @param identifierListener
- * the instance to unregister. Must not be <code>null</code>. If an attempt is
- * made to unregister an instance which is not already registered with this instance,
- * no operation is performed.
- */
- void removeIdentifierListener(IEnablementIdentifierListener identifierListener);
-
-
-}

Back to the top