Methods Summary |
---|
private static final void | accessCheck()
// BEGIN android-changed
if (VMStack.getCallingClassLoader() != null) {
throw new SecurityException();
}
// END android-changed
|
public static IAdapterManager | getAdapterManager()
return ADAPTER_MANAGER;
|
public static IFileSystem | getFileSystem()
accessCheck();
return FILE_SYSTEM;
|
public static IMemorySystem | getMemorySystem()
accessCheck();
return MEMORY_SYSTEM;
|
public static INetworkSystem | getNetworkSystem()
accessCheck();
return NETWORK_SYSTEM;
|