Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/expression/IMemberProvider.java')
-rw-r--r--bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/expression/IMemberProvider.java31
1 files changed, 0 insertions, 31 deletions
diff --git a/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/expression/IMemberProvider.java b/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/expression/IMemberProvider.java
deleted file mode 100644
index 44cf39d29..000000000
--- a/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/expression/IMemberProvider.java
+++ /dev/null
@@ -1,31 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2009 - 2010 Cloudsmith Inc. 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:
- * Cloudsmith Inc. - initial API and implementation
- *******************************************************************************/
-package org.eclipse.equinox.p2.metadata.expression;
-
-/**
- * This interface may be implemented by any class that wants to provide easy
- * (high performance) access to its member to the expression evaluator. It
- * also gives the implementing class a way to hide or rename the members
- * otherwise accessible using getters.
- * @since 2.0
- */
-public interface IMemberProvider {
- /**
- * Returns the value for the specified member. Implementers can rely
- * on that the <code>memberName</code> is a string that has been
- * internalized using {@link String#intern()}.
- * @param memberName The name of the member
- * @return The member value.
- * @throws IllegalArgumentException if the instance has no member with
- * the given name.
- */
- Object getMember(String memberName);
-}

Back to the top