How to set name and the display name of the component?

I’ve created a vision component with the SDK

PaletteItemGroup group = palette.addGroup("SIAILabs");
group.addPaletteItem(new JavaBeanPaletteItem(ClientHook.class));

How to change the name and the display name () of the component which is used in the designer ?

Mouse over on the component in the palette show :
Short descrition not set
display name not set

You can set that in your ComponentBeanInfo class by overriding the initDesc function:@Override protected void initDesc() { getBeanDescriptor().setName("MyCompName"); getBeanDescriptor().setDisplayName("My Display Name"); getBeanDescriptor().setShortDescription("My description"); }