| java.lang.Object org.netbeans.modules.visualweb.dataprovider.designtime.AbstractDesignInfo
AbstractDesignInfo | abstract public class AbstractDesignInfo implements DesignInfo(Code) | | Convenience base class for DesignInfo implementations
that provide design time behavior for JSF components inside Creator.
Any DesignInfo implementation that extends this class
will receive the default behavior described for each method, unless that
method is overridden.
|
AbstractDesignInfo | public AbstractDesignInfo(Class clazz)(Code) | | Construct a DesignInfo instance for the specified
JavaBean class.
Parameters: clazz - Class of the JavaBean for which this instance is created |
beanChanged | public void beanChanged(DesignBean bean)(Code) | | Take no action by default.
Parameters: bean - The DesignBean that has changed. |
beanContextActivated | public void beanContextActivated(DesignBean bean)(Code) | | Take no action by default.
Parameters: bean - The DesignBean whose context has been activated |
beanContextDeactivated | public void beanContextDeactivated(DesignBean bean)(Code) | | Take no action by default.
Parameters: bean - The DesignBean whose context has been deactivated |
beanCreatedSetup | public Result beanCreatedSetup(DesignBean bean)(Code) | | Take no action by default. Return Result.SUCCESS .
Parameters: bean - The bean that was just created |
beanDeletedCleanup | public Result beanDeletedCleanup(DesignBean bean)(Code) | | Take no action by default. Return Result.SUCCESS .
Parameters: bean - The bean that is about to be deleted |
beanPastedSetup | public Result beanPastedSetup(DesignBean bean)(Code) | | Take no action by default. Return Result.SUCCESS .
Parameters: bean - The bean that has been pasted |
eventChanged | public void eventChanged(DesignEvent event)(Code) | | Take no action by default.
Parameters: event - The DesignEvent that has changed. |
getBeanClass | public Class getBeanClass()(Code) | | Returns the class type of the JavaBean that was
passed to our constructor.
|
getBeanDescriptor | protected BeanDescriptor getBeanDescriptor()(Code) | | Return the BeanDescriptor for the class this
DesignInfo is designed to wrap, if possible;
otherwise, return null .
|
getContextItems | public DisplayAction[] getContextItems(DesignBean bean)(Code) | | Return null , indicating that no context menu items
will be provided.
Parameters: bean - The DesignBean that a user has right-clicked on |
getPropertyDescriptor | protected PropertyDescriptor getPropertyDescriptor(String name)(Code) | | Return the PropertyDescriptor for the specified
property of the class this DesignInfo is designed
to wrap, if possible and if it exists; otherwise, return
null .
|
getPropertyDescriptors | protected PropertyDescriptor[] getPropertyDescriptors()(Code) | | Return an array of PropertyDescriptor s for the class
this DesignInfo is designed to wrap, if possible;
otherwise, return null .
|
instanceNameChanged | public void instanceNameChanged(DesignBean bean, String oldInstanceName)(Code) | | Take no action by default.
Parameters: bean - The DesignBean that has been renamed. Parameters: oldInstanceName - The prior instance name |
linkBeans | public Result linkBeans(DesignBean targetBean, DesignBean sourceBean)(Code) | | Take no action by default.
Parameters: targetBean - The target DesignBean instance that theuser has 'dropped' an object onto to establish a link Parameters: sourceBean - The DesignBean instance that hasbeen 'dropped' See Also: AbstractDesignInfo.acceptLink |
propertyChanged | public void propertyChanged(DesignProperty property, Object oldValue)(Code) | | Take no action by default.
Parameters: property - The DesignProperty that has changed. Parameters: oldValue - Optional oldValue, or null if theprevious value is not known |
|
|