SimpleBeanInfo
Stay organized with collections
Save and categorize content based on your preferences.
Inherited Constant Summary
Public Constructor Summary
Inherited Method Summary
From class
java.lang.Object
Object
|
clone()
Creates and returns a copy of this Object .
|
boolean
|
equals( Object obj)
Compares this instance with the specified object and indicates if they
are equal.
|
void
|
finalize()
Invoked when the garbage collector has detected that this instance is no longer reachable.
|
final
Class<?>
|
getClass()
Returns the unique instance of Class that represents this
object's class.
|
int
|
hashCode()
Returns an integer hash code for this object.
|
final
void
|
notify()
Causes a thread which is waiting on this object's monitor (by means of
calling one of the wait() methods) to be woken up.
|
final
void
|
notifyAll()
Causes all threads which are waiting on this object's monitor (by means
of calling one of the wait() methods) to be woken up.
|
String
|
toString()
Returns a string containing a concise, human-readable description of this
object.
|
final
void
|
wait(long timeout, int nanos)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
final
void
|
wait(long timeout)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
final
void
|
wait()
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object.
|
Public Methods
public
int
getDefaultEventIndex
()
public
int
getDefaultPropertyIndex
()
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-07-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-07-10 UTC."],[[["\u003cp\u003e\u003ccode\u003eSimpleBeanInfo\u003c/code\u003e is a convenience class for creating blank bean information objects.\u003c/p\u003e\n"],["\u003cp\u003eIt implements the \u003ccode\u003eBeanInfo\u003c/code\u003e interface, providing basic introspection capabilities for Java Beans.\u003c/p\u003e\n"],["\u003cp\u003eThis class allows developers to selectively override methods to supply specific bean information like descriptors for properties, methods, and events.\u003c/p\u003e\n"],["\u003cp\u003eIt inherits methods from \u003ccode\u003ejava.lang.Object\u003c/code\u003e and \u003ccode\u003ejava.beans.BeanInfo\u003c/code\u003e, offering functionalities for object manipulation and bean introspection.\u003c/p\u003e\n"],["\u003cp\u003eDevelopers can extend this class to provide detailed information about their custom beans, aiding visual development tools.\u003c/p\u003e\n"]]],[],null,["public class **SimpleBeanInfo** extends [Object](../../../reference/java/lang/Object.html) \nimplements [BeanInfo](../../../reference/java/beans/BeanInfo.html) \n\nInherited Constant Summary \nFrom interface [java.beans.BeanInfo](../../../reference/java/beans/BeanInfo.html) \n\n|-----|----------------------------------------------------------------------------------|---|\n| int | [ICON_COLOR_16x16](../../../reference/java/beans/BeanInfo.html#ICON_COLOR_16x16) | |\n| int | [ICON_COLOR_32x32](../../../reference/java/beans/BeanInfo.html#ICON_COLOR_32x32) | |\n| int | [ICON_MONO_16x16](../../../reference/java/beans/BeanInfo.html#ICON_MONO_16x16) | |\n| int | [ICON_MONO_32x32](../../../reference/java/beans/BeanInfo.html#ICON_MONO_32x32) | |\n\nPublic Constructor Summary\n\n|---|----------------------------------------------------------------------------------------|\n| | [SimpleBeanInfo](../../../reference/java/beans/SimpleBeanInfo.html#SimpleBeanInfo())() |\n\nPublic Method Summary\n\n|---------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|\n| [BeanInfo\\[\\]](../../../reference/java/beans/BeanInfo.html) | [getAdditionalBeanInfo](../../../reference/java/beans/SimpleBeanInfo.html#getAdditionalBeanInfo())() |\n| [BeanDescriptor](../../../reference/java/beans/BeanDescriptor.html) | [getBeanDescriptor](../../../reference/java/beans/SimpleBeanInfo.html#getBeanDescriptor())() |\n| int | [getDefaultEventIndex](../../../reference/java/beans/SimpleBeanInfo.html#getDefaultEventIndex())() |\n| int | [getDefaultPropertyIndex](../../../reference/java/beans/SimpleBeanInfo.html#getDefaultPropertyIndex())() |\n| [EventSetDescriptor\\[\\]](../../../reference/java/beans/EventSetDescriptor.html) | [getEventSetDescriptors](../../../reference/java/beans/SimpleBeanInfo.html#getEventSetDescriptors())() |\n| [MethodDescriptor\\[\\]](../../../reference/java/beans/MethodDescriptor.html) | [getMethodDescriptors](../../../reference/java/beans/SimpleBeanInfo.html#getMethodDescriptors())() |\n| [PropertyDescriptor\\[\\]](../../../reference/java/beans/PropertyDescriptor.html) | [getPropertyDescriptors](../../../reference/java/beans/SimpleBeanInfo.html#getPropertyDescriptors())() |\n\nInherited Method Summary \nFrom class [java.lang.Object](../../../reference/java/lang/Object.html) \n\n|-------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [Object](../../../reference/java/lang/Object.html) | [clone](../../../reference/java/lang/Object.html#clone())() Creates and returns a copy of this `Object`. |\n| boolean | [equals](../../../reference/java/lang/Object.html#equals(java.lang.Object))([Object](../../../reference/java/lang/Object.html) obj) Compares this instance with the specified object and indicates if they are equal. |\n| void | [finalize](../../../reference/java/lang/Object.html#finalize())() Invoked when the garbage collector has detected that this instance is no longer reachable. |\n| final [Class](../../../reference/java/lang/Class.html)\\\u003c?\\\u003e | [getClass](../../../reference/java/lang/Object.html#getClass())() Returns the unique instance of [Class](../../../reference/java/lang/Class.html) that represents this object's class. |\n| int | [hashCode](../../../reference/java/lang/Object.html#hashCode())() Returns an integer hash code for this object. |\n| final void | [notify](../../../reference/java/lang/Object.html#notify())() Causes a thread which is waiting on this object's monitor (by means of calling one of the `wait()` methods) to be woken up. |\n| final void | [notifyAll](../../../reference/java/lang/Object.html#notifyAll())() Causes all threads which are waiting on this object's monitor (by means of calling one of the `wait()` methods) to be woken up. |\n| [String](../../../reference/java/lang/String.html) | [toString](../../../reference/java/lang/Object.html#toString())() Returns a string containing a concise, human-readable description of this object. |\n| final void | [wait](../../../reference/java/lang/Object.html#wait(long,%20int))(long timeout, int nanos) Causes the calling thread to wait until another thread calls the `notify()` or `notifyAll()` method of this object or until the specified timeout expires. |\n| final void | [wait](../../../reference/java/lang/Object.html#wait(long))(long timeout) Causes the calling thread to wait until another thread calls the `notify()` or `notifyAll()` method of this object or until the specified timeout expires. |\n| final void | [wait](../../../reference/java/lang/Object.html#wait())() Causes the calling thread to wait until another thread calls the `notify()` or `notifyAll()` method of this object. |\n\nFrom interface [java.beans.BeanInfo](../../../reference/java/beans/BeanInfo.html) \n\n|------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------|\n| abstract [BeanInfo\\[\\]](../../../reference/java/beans/BeanInfo.html) | [getAdditionalBeanInfo](../../../reference/java/beans/BeanInfo.html#getAdditionalBeanInfo())() |\n| abstract [BeanDescriptor](../../../reference/java/beans/BeanDescriptor.html) | [getBeanDescriptor](../../../reference/java/beans/BeanInfo.html#getBeanDescriptor())() |\n| abstract int | [getDefaultEventIndex](../../../reference/java/beans/BeanInfo.html#getDefaultEventIndex())() |\n| abstract int | [getDefaultPropertyIndex](../../../reference/java/beans/BeanInfo.html#getDefaultPropertyIndex())() |\n| abstract [EventSetDescriptor\\[\\]](../../../reference/java/beans/EventSetDescriptor.html) | [getEventSetDescriptors](../../../reference/java/beans/BeanInfo.html#getEventSetDescriptors())() |\n| abstract [MethodDescriptor\\[\\]](../../../reference/java/beans/MethodDescriptor.html) | [getMethodDescriptors](../../../reference/java/beans/BeanInfo.html#getMethodDescriptors())() |\n| abstract [PropertyDescriptor\\[\\]](../../../reference/java/beans/PropertyDescriptor.html) | [getPropertyDescriptors](../../../reference/java/beans/BeanInfo.html#getPropertyDescriptors())() |\n\nPublic Constructors \n\npublic\n**SimpleBeanInfo**\n() \n\u003cbr /\u003e\n\nPublic Methods \n\npublic [BeanInfo\\[\\]](../../../reference/java/beans/BeanInfo.html)\n**getAdditionalBeanInfo**\n() \n\u003cbr /\u003e\n\npublic [BeanDescriptor](../../../reference/java/beans/BeanDescriptor.html)\n**getBeanDescriptor**\n() \n\u003cbr /\u003e\n\npublic int\n**getDefaultEventIndex**\n() \n\u003cbr /\u003e\n\npublic int\n**getDefaultPropertyIndex**\n() \n\u003cbr /\u003e\n\npublic [EventSetDescriptor\\[\\]](../../../reference/java/beans/EventSetDescriptor.html)\n**getEventSetDescriptors**\n() \n\u003cbr /\u003e\n\npublic [MethodDescriptor\\[\\]](../../../reference/java/beans/MethodDescriptor.html)\n**getMethodDescriptors**\n() \n\u003cbr /\u003e\n\npublic [PropertyDescriptor\\[\\]](../../../reference/java/beans/PropertyDescriptor.html)\n**getPropertyDescriptors**\n() \n\u003cbr /\u003e"]]