Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 307ea96e2644403b494e40186288313c721ee720 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*******************************************************************************
 * Copyright (c) 2000, 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
 *******************************************************************************/
package org.eclipse.core.expressions;

import org.eclipse.core.runtime.CoreException;

/**
 * A property tester can be used to add additional properties to test to an
 * existing type.
 * <p>
 * This interface is not intended to be implemented by clients. Clients
 * should subclass type <code>PropertyTester</code>.
 * </p>
 *
 * @since 3.0
 *
 * @noimplement This interface is not intended to be implemented by clients.
 * @noextend This interface is not intended to be extended by clients.
 */
public interface IPropertyTester {

	/**
	 * Returns whether the property tester can handle the given
	 * property or not.
	 *
	 * @param namespace the name space to be considered
	 * @param property the property to test
	 * @return <code>true</code> if the tester provides an implementation
	 *  for the given property; otherwise <code>false</code> is returned
	 */
	boolean handles(String namespace, String property);

	/**
	 * Returns whether the implementation class for this property tester is
	 * loaded or not.
	 *
	 * @return <code>true</code>if the implementation class is loaded;
	 *  <code>false</code> otherwise
	 */
	boolean isInstantiated();

	/**
	 * Returns <code>true</code> if the implementation class of this property
	 * tester can be loaded. This is the case if the plug-in providing
	 * the implementation class is active. Returns <code>false</code> otherwise.
	 *
	 * @return whether the implementation class can be loaded or not
	 */
	boolean isDeclaringPluginActive();

	/**
	 * Loads the implementation class for this property tester and returns an
	 * instance of this class.
	 *
	 * @return an instance of the implementation class for this property tester
	 *
	 * @throws CoreException if the implementation class cannot be loaded
	 */
	IPropertyTester instantiate() throws CoreException;

	/**
	 * Executes the property test determined by the parameter <code>property</code>.
	 *
	 * @param receiver the receiver of the property test
	 * @param property the property to test
	 * @param args additional arguments to evaluate the property. If no arguments are specified in
	 *            the <code>test</code> expression an array of length 0 is passed
	 * @param expectedValue the expected value of the property. The value is either of type
	 *            <code>java.lang.String</code> or a boxed base type. If no value was specified in
	 *            the <code>test</code> expressions then <code>null</code> is passed
	 *
	 * @return returns <code>true</code> if the property is equal to the expected value; otherwise
	 *         <code>false</code> is returned
	 */
	boolean test(Object receiver, String property, Object[] args, Object expectedValue);
}

Back to the top