Package | Description |
---|---|
java.beans |
Contains classes for run-time Java Beans support.
|
java.lang |
Provides classes that are fundamental to the design of the Java
programming language.
|
java.lang.reflect |
Provides classes and interfaces for obtaining reflective
information about classes and objects.
|
java.net |
Provides the classes for implementing networking applications.
|
java.security |
Provides the classes and interfaces for the security framework.
|
java.util |
Contains the collections framework, legacy collection classes, event model,
date and time facilities, internationalization, and miscellaneous utility
classes (a string tokenizer, a random-number generator, and a bit array).
|
javax.microedition.xlet |
Provides interfaces used by applications and the application manager
to communicate.
|
org.dvb.lang |
Provides those core platform related features not found
in the java.lang package.
|
Modifier and Type | Method and Description |
---|---|
static Object |
Beans.instantiate(ClassLoader cls,
String beanName)
Instantiate a JavaBean.
|
Modifier and Type | Method and Description |
---|---|
ClassLoader |
Class.getClassLoader()
Returns the class loader for the class.
|
ClassLoader |
Thread.getContextClassLoader()
Returns the context ClassLoader for this Thread.
|
ClassLoader |
ClassLoader.getParent()
Returns the parent class loader for delegation.
|
static ClassLoader |
ClassLoader.getSystemClassLoader()
Returns the system class loader for delegation.
|
Modifier and Type | Method and Description |
---|---|
static Class |
Class.forName(String name,
boolean initialize,
ClassLoader loader)
Returns the
Class object associated with the class or
interface with the given string name, using the given class loader. |
void |
Thread.setContextClassLoader(ClassLoader cl)
Sets the context ClassLoader for this Thread.
|
Constructor and Description |
---|
ClassLoader(ClassLoader parent)
Creates a new class loader using the specified parent class loader for
delegation.
|
Modifier and Type | Method and Description |
---|---|
static Class |
Proxy.getProxyClass(ClassLoader loader,
Class[] interfaces)
Returns the
java.lang.Class object for a proxy class
given a class loader and an array of interfaces. |
static Object |
Proxy.newProxyInstance(ClassLoader loader,
Class[] interfaces,
InvocationHandler h)
Returns an instance of a proxy class for the specified interfaces
that dispatches method invocations to the specified invocation
handler.
|
Modifier and Type | Class and Description |
---|---|
class |
URLClassLoader
This class loader is used to load classes and resources from a search
path of URLs referring to both JAR files and directories.
|
Modifier and Type | Method and Description |
---|---|
static URLClassLoader |
URLClassLoader.newInstance(URL[] urls,
ClassLoader parent)
Creates a new instance of URLClassLoader for the specified
URLs and parent class loader.
|
Constructor and Description |
---|
URLClassLoader(URL[] urls,
ClassLoader parent)
Constructs a new URLClassLoader for the given URLs.
|
URLClassLoader(URL[] urls,
ClassLoader parent,
URLStreamHandlerFactory factory)
Constructs a new URLClassLoader for the specified URLs, parent
class loader, and URLStreamHandlerFactory.
|
Modifier and Type | Class and Description |
---|---|
class |
SecureClassLoader
This class extends ClassLoader with additional support for defining
classes with an associated code source and permissions which are
retrieved by the system policy by default.
|
Modifier and Type | Method and Description |
---|---|
ClassLoader |
ProtectionDomain.getClassLoader()
Returns the ClassLoader of this domain.
|
Constructor and Description |
---|
ProtectionDomain(CodeSource codesource,
PermissionCollection permissions,
ClassLoader classloader,
Principal[] principals)
Creates a new ProtectionDomain qualified by the given CodeSource,
Permissions, ClassLoader and array of Principals.
|
SecureClassLoader(ClassLoader parent)
Creates a new SecureClassLoader using the specified parent
class loader for delegation.
|
Modifier and Type | Method and Description |
---|---|
static ResourceBundle |
ResourceBundle.getBundle(String baseName,
Locale locale,
ClassLoader loader)
Gets a resource bundle using the specified base name, locale, and class loader.
|
Modifier and Type | Method and Description |
---|---|
ClassLoader |
XletContext.getClassLoader()
Returns the base class loader of the Xlet.
|
Modifier and Type | Class and Description |
---|---|
class |
DVBClassLoader
This class loader is used to load classes and resources from
a search path of URLs referring to locations where Java
class files may be stored.
|
Modifier and Type | Method and Description |
---|---|
static DVBClassLoader |
DVBClassLoader.newInstance(URL[] urls,
ClassLoader parent)
Creates a new instance of DVBClassLoader for the specified URLs.
|
Constructor and Description |
---|
DVBClassLoader(URL[] urls,
ClassLoader parent)
Constructs a new DVBClassLoader for the given URLs.
|
Copyright © 2012 CableLabs. All Rights Reserved.