Re: TableCellRenderer in netbeans.
Sowade Kayode wrote:
> Hi,
> i have a customTableCellRenderer class. how do i point to this calss as
> the default renderer from the properties tab of the design view. i am
> actually new to netbeans
You don't; you want to provide custom property editors (which can
include custom painting code) for the properties you want to display.
Have a look at the JavaBeans spec, and the Nodes API, specifically
Node.Property.
-Tim