System
Interface IServiceProvider
public interface IServiceProvider
Defines a mechanism for retrieving a service object; that is, an object that provides custom support to other objects.
- Author:
- Halofreak1990
Method Summary |
java.lang.Object |
GetService(java.lang.Class serviceType)
Gets the service object of the specified type. |
GetService
java.lang.Object GetService(java.lang.Class serviceType)
- Gets the service object of the specified type.
- Parameters:
serviceType
- An object that specifies the type of service object to get.
- Returns:
- A service object of type serviceType.-or- null if there is no service object of type serviceType.