Top Description Constructors Methods
java.beans

public Class Beans

Additional top-level classes in compilation unit: ObjectInputStreamWithLoader, BeansAppletContext, BeansAppletStub.

extends Object
Class Inheritance
Imports
com.sun.beans.finder.ClassFinder, java.applet.Applet, .AppletContext, .AppletStub, .AudioClip, java.awt.Image, java.beans.beancontext.BeanContext, java.io.IOException, .InputStream, .ObjectInputStream, .ObjectStreamClass, .StreamCorruptedException, java.lang.reflect.Modifier, java.net.MalformedURLException, .URL, java.util.Enumeration, .Hashtable, .Iterator, .Vector

This class provides some general purpose beans control methods.
Since
1.1

Constructor Summary

AccessConstructor and Description
public
Beans()

Constructs a Beans.

Method Summary

Modifier and TypeMethod and Description
public static Object

Returns:

an object representing a specified type view of the source object
getInstanceOf
(Object
Object from which we want to obtain a view.
bean
,
Class<?>
The type of view we'd like to get.
targetType
)

From a given bean, obtain an object representing a specified type view of that source object.

public static Object

Returns:

a JavaBean
instantiate
(ClassLoader
the class-loader from which we should create the bean. If this is null, then the system class-loader is used.
cls
,
String
the name of the bean within the class-loader. For example "sun.beanbox.foobah"
beanName
)

Instantiate a JavaBean.

public static Object

Returns:

a JavaBean
instantiate
(ClassLoader
the class-loader from which we should create the bean. If this is null, then the system class-loader is used.
cls
,
String
the name of the bean within the class-loader. For example "sun.beanbox.foobah"
beanName
,
BeanContext
The BeanContext in which to nest the new bean
beanContext
)

Instantiate a JavaBean.

public static Object

Returns:

a JavaBean
instantiate
(ClassLoader
the class-loader from which we should create the bean. If this is null, then the system class-loader is used.
cls
,
String
the name of the bean within the class-loader. For example "sun.beanbox.foobah"
beanName
,
BeanContext
The BeanContext in which to nest the new bean
beanContext
,
AppletInitializer
The AppletInitializer for the new bean
initializer
)

Deprecated for removal since 9. It is recommended to use instantiate(ClassLoader, String, BeanContext), because the Applet API is deprecated.
Instantiate a bean.
public static boolean

Returns:

True if we are running in an application construction environment.
isDesignTime
()

Test if we are in design-mode.

public static boolean

Returns:

True if we are running in an environment where beans can assume that an interactive GUI is available, so they can pop up dialog boxes, etc. This will normally return true in a windowing environment, and will normally return false in a server environment or if an application is running as part of a batch job.
isGuiAvailable
()

Determines whether beans can assume a GUI is available.

public static boolean

Returns:

"true" if the given bean supports the given targetType.
isInstanceOf
(Object
Bean from which we want to obtain a view.
bean
,
Class<?>
The type of view we'd like to get.
targetType
)

Check if a bean can be viewed as a given target type.

private static URL
newURL(String spec)

public static void
setDesignTime(boolean
True if we're in an application builder tool.
isDesignTime
)

Used to indicate whether of not we are running in an application builder environment.

public static void
setGuiAvailable(boolean
True if GUI interaction is available.
isGuiAvailable
)

Used to indicate whether of not we are running in an environment where GUI interaction is available.

private static void
Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Constructor Detail

Beansback to summary
public Beans()

Constructs a Beans.

Method Detail

getInstanceOfback to summary
public static Object getInstanceOf(Object bean, Class<?> targetType)

From a given bean, obtain an object representing a specified type view of that source object.

The result may be the same object or a different object. If the requested target view isn't available then the given bean is returned.

This method is provided in Beans 1.0 as a hook to allow the addition of more flexible bean behaviour in the future.

Parameters
bean:Object

Object from which we want to obtain a view.

targetType:Class<?>

The type of view we'd like to get.

Returns:Object

an object representing a specified type view of the source object

instantiateback to summary
public static Object instantiate(ClassLoader cls, String beanName) throws IOException, ClassNotFoundException

Instantiate a JavaBean.

Parameters
cls:ClassLoader

the class-loader from which we should create the bean. If this is null, then the system class-loader is used.

beanName:String

the name of the bean within the class-loader. For example "sun.beanbox.foobah"

Returns:Object

a JavaBean

Exceptions
IOException:
if an I/O error occurs.
ClassNotFoundException:
if the class of a serialized object could not be found.
instantiateback to summary
public static Object instantiate(ClassLoader cls, String beanName, BeanContext beanContext) throws IOException, ClassNotFoundException

Instantiate a JavaBean.

Parameters
cls:ClassLoader

the class-loader from which we should create the bean. If this is null, then the system class-loader is used.

beanName:String

the name of the bean within the class-loader. For example "sun.beanbox.foobah"

beanContext:BeanContext

The BeanContext in which to nest the new bean

Returns:Object

a JavaBean

Annotations
@SuppressWarnings:deprecation
Exceptions
IOException:
if an I/O error occurs.
ClassNotFoundException:
if the class of a serialized object could not be found.
Since
1.2
instantiateback to summary
public static Object instantiate(ClassLoader cls, String beanName, BeanContext beanContext, AppletInitializer initializer) throws IOException, ClassNotFoundException

Deprecated

for removal since 9.

It is recommended to use instantiate(ClassLoader, String, BeanContext), because the Applet API is deprecated. See the java.applet package documentation for further information.

Instantiate a bean.

The bean is created based on a name relative to a class-loader. This name should be a dot-separated name such as "a.b.c".

In Beans 1.0 the given name can indicate either a serialized object or a class. Other mechanisms may be added in the future. In beans 1.0 we first try to treat the beanName as a serialized object name then as a class name.

When using the beanName as a serialized object name we convert the given beanName to a resource pathname and add a trailing ".ser" suffix. We then try to load a serialized object from that resource.

For example, given a beanName of "x.y", Beans.instantiate would first try to read a serialized object from the resource "x/y.ser" and if that failed it would try to load the class "x.y" and create an instance of that class.

If the bean is a subtype of java.applet.Applet, then it is given some special initialization. First, it is supplied with a default AppletStub and AppletContext. Second, if it was instantiated from a classname the applet's "init" method is called. (If the bean was deserialized this step is skipped.)

Note that for beans which are applets, it is the caller's responsibility to call "start" on the applet. For correct behaviour, this should be done after the applet has been added into a visible AWT container.

Note that applets created via beans.instantiate run in a slightly different environment than applets running inside browsers. In particular, bean applets have no access to "parameters", so they may wish to provide property get/set methods to set parameter values. We advise bean-applet developers to test their bean-applets against both the JDK appletviewer (for a reference browser environment) and the BDK BeanBox (for a reference bean container).

Parameters
cls:ClassLoader

the class-loader from which we should create the bean. If this is null, then the system class-loader is used.

beanName:String

the name of the bean within the class-loader. For example "sun.beanbox.foobah"

beanContext:BeanContext

The BeanContext in which to nest the new bean

initializer:AppletInitializer

The AppletInitializer for the new bean

Returns:Object

a JavaBean

Annotations
@Deprecated
since:9
forRemoval:true
@SuppressWarnings:removal
Exceptions
IOException:
if an I/O error occurs.
ClassNotFoundException:
if the class of a serialized object could not be found.
Since
1.2
isDesignTimeback to summary
public static boolean isDesignTime()

Test if we are in design-mode.

Returns:boolean

True if we are running in an application construction environment.

See Also
DesignMode
isGuiAvailableback to summary
public static boolean isGuiAvailable()

Determines whether beans can assume a GUI is available.

Returns:boolean

True if we are running in an environment where beans can assume that an interactive GUI is available, so they can pop up dialog boxes, etc. This will normally return true in a windowing environment, and will normally return false in a server environment or if an application is running as part of a batch job.

See Also
Visibility
isInstanceOfback to summary
public static boolean isInstanceOf(Object bean, Class<?> targetType)

Check if a bean can be viewed as a given target type. The result will be true if the Beans.getInstanceof method can be used on the given bean to obtain an object that represents the specified targetType type view.

Parameters
bean:Object

Bean from which we want to obtain a view.

targetType:Class<?>

The type of view we'd like to get.

Returns:boolean

"true" if the given bean supports the given targetType.

newURLback to summary
private static URL newURL(String spec) throws MalformedURLException
Annotations
@SuppressWarnings:deprecation
setDesignTimeback to summary
public static void setDesignTime(boolean isDesignTime) throws SecurityException

Used to indicate whether of not we are running in an application builder environment.

Note that this method is security checked and is not available to (for example) untrusted applets. More specifically, if there is a security manager, its checkPropertiesAccess method is called. This could result in a SecurityException.

Parameters
isDesignTime:boolean

True if we're in an application builder tool.

Exceptions
SecurityException:
if a security manager exists and its checkPropertiesAccess method doesn't allow setting of system properties.
See Also
SecurityManager#checkPropertiesAccess
setGuiAvailableback to summary
public static void setGuiAvailable(boolean isGuiAvailable) throws SecurityException

Used to indicate whether of not we are running in an environment where GUI interaction is available.

Note that this method is security checked and is not available to (for example) untrusted applets. More specifically, if there is a security manager, its checkPropertiesAccess method is called. This could result in a SecurityException.

Parameters
isGuiAvailable:boolean

True if GUI interaction is available.

Exceptions
SecurityException:
if a security manager exists and its checkPropertiesAccess method doesn't allow setting of system properties.
See Also
SecurityManager#checkPropertiesAccess
unsafeBeanContextAddback to summary
private static void unsafeBeanContextAdd(BeanContext beanContext, Object res)
Annotations
@SuppressWarnings:unchecked