Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
org.apache.hivemind.internal.Module

Uses of Module in org.apache.hivemind.internal
 

Methods in org.apache.hivemind.internal that return Module
 Module ServiceImplementationConstructor.getContributingModule()
          Returns the module which created the contribution.
 Module RegistryInfrastructure.getModule(java.lang.String moduleId)
          Returns the module with the corresponding module id.
 Module ExtensionPoint.getModule()
          Returns the Module containing the extension point.
 Module Contribution.getContributingModule()
          Returns the module which made this contribution.
 

Methods in org.apache.hivemind.internal with parameters of type Module
 java.lang.Object RegistryInfrastructure.getService(java.lang.String serviceId, java.lang.Class serviceInterface, Module module)
          Obtains a service from the registry.
 java.lang.Object RegistryInfrastructure.getService(java.lang.Class serviceInterface, Module module)
          Finds a service that implements the provided interface.
 java.util.List RegistryInfrastructure.getConfiguration(java.lang.String configurationId, Module module)
          Returns the converted items contributed to the configuration point.
 boolean RegistryInfrastructure.isConfigurationMappable(java.lang.String configurationId, Module module)
          Returns true if the elements contributed to the given configuration point can be retrieved as a Map.
 java.util.Map RegistryInfrastructure.getConfigurationAsMap(java.lang.String configurationId, Module module)
          Returns the elements of the given configuration point as an unmodifiable java.util.Map.
 ConfigurationPoint RegistryInfrastructure.getConfigurationPoint(java.lang.String configurationId, Module module)
          Returns the configuration point.
 ServicePoint RegistryInfrastructure.getServicePoint(java.lang.String serviceId, Module module)
          Returns the identified service extension point.
 boolean RegistryInfrastructure.containsConfiguration(java.lang.String configurationId, Module module)
          Returns true if a configuration for the specified id exists (and is visible to the specified module).
 boolean RegistryInfrastructure.containsService(java.lang.Class serviceInterface, Module module)
          Returns true if a single service exists which implements the specified service interface and is visible to the given module.
 boolean RegistryInfrastructure.containsService(java.lang.String serviceId, java.lang.Class serviceInterface, Module module)
          Returns true if a single service with the given id exists which implements the specified service interface and is visible to the given module.
 boolean ExtensionPoint.visibleToModule(Module module)
          Returns true if the extension point is visible to the specified module.