Interface IAccessRuleParticipant
-
public interface IAccessRuleParticipant
Contributes access rules for an execution environment. Contributed with an execution environments extension.Clients contributing an access rule participant may implement this interface.
- Since:
- 3.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IAccessRule[][]
getAccessRules(IExecutionEnvironment environment, IVMInstall vm, LibraryLocation[] libraries, IJavaProject project)
Returns a collection of access rules to be applied to the specified VM libraries and execution environment in the context of the given project.
-
-
-
Method Detail
-
getAccessRules
IAccessRule[][] getAccessRules(IExecutionEnvironment environment, IVMInstall vm, LibraryLocation[] libraries, IJavaProject project)
Returns a collection of access rules to be applied to the specified VM libraries and execution environment in the context of the given project. An array of access rules is returned for each library specified bylibraries
, possibly empty.- Parameters:
environment
- the environment that access rules are requested forvm
- the vm that access rules are requested forlibraries
- the libraries that access rules are requested forproject
- the project the access rules are requested for ornull
if none- Returns:
- a collection of arrays of access rules - one array per library, possibly empty
- Since:
- 3.3
-
-