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/operations/OperationExtension.java')
-rw-r--r--plugins/org.eclipse.wst.common.frameworks/src/org/eclipse/wst/common/frameworks/internal/operations/OperationExtension.java77
1 files changed, 0 insertions, 77 deletions
diff --git a/plugins/org.eclipse.wst.common.frameworks/src/org/eclipse/wst/common/frameworks/internal/operations/OperationExtension.java b/plugins/org.eclipse.wst.common.frameworks/src/org/eclipse/wst/common/frameworks/internal/operations/OperationExtension.java
deleted file mode 100644
index 2fcd16eec..000000000
--- a/plugins/org.eclipse.wst.common.frameworks/src/org/eclipse/wst/common/frameworks/internal/operations/OperationExtension.java
+++ /dev/null
@@ -1,77 +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
- *******************************************************************************/
-package org.eclipse.wst.common.frameworks.internal.operations;
-
-import org.eclipse.core.runtime.CoreException;
-import org.eclipse.core.runtime.IConfigurationElement;
-
-public class OperationExtension {
-
- protected String opID = null;
-
- protected IConfigurationElement baseElement = null;
-
- protected String preOperationClass = null;
-
- protected String postOperationClass = null;
-
- protected String extensionId;
-
- public OperationExtension(IConfigurationElement element, String id, String preOp, String postOp) {
- super();
- baseElement = element;
- setUpExtension(id, preOp, postOp);
- }
-
- private void setUpExtension(String id, String preOp, String postOp) {
- opID = id;
- preOperationClass = preOp;
- postOperationClass = postOp;
- this.extensionId = baseElement.getDeclaringExtension().getUniqueIdentifier();
- if (this.extensionId == null)
- this.extensionId = baseElement.getDeclaringExtension().getNamespace();
- }
-
- public String getOpID() {
- return opID;
- }
-
- public String getPostOperationClass() {
- return postOperationClass;
- }
-
- public String getPreOperationClass() {
- return preOperationClass;
- }
-
- public Object getPostOperation() throws CoreException {
- if (postOperationClass == null)
- return null;
- return baseElement.createExecutableExtension(OperationExtensionReader.ATT_POST_OP);
- }
-
- public Object getPreOperation() throws CoreException {
- if (preOperationClass == null)
- return null;
- return baseElement.createExecutableExtension(OperationExtensionReader.ATT_PRE_OP);
- }
-
- /**
- * @return Returns the extensionId.
- */
- public String getExtensionId() {
- return extensionId;
- }
-
- public IConfigurationElement getBaseElement() {
- return baseElement;
- }
-}

Back to the top