/**************************************************** This is an example of a BeanInfo that gives sieve the information for a tool called TableViewTool, that has a customizer called TableViewCustomizer. By Fernando Das Neves, august 1999. ****************************************************/ /* set the package this BeanInfo belongs to. It can be any package, but for sluice this is tipically sieve.sluice.view, sieve.sluice.nuggets, or sieve.sluice.codebook */ package sieve.sluice.myGroupOfTools; import java.beans.*; public class TableViewToolBeanInfo extends SimpleBeanInfo { public BeanDescriptor getBeanDescriptor() { BeanDescriptor bd = new BeanDescriptor(TableViewTool.class, TableViewToolCustomizer.class); bd.setDisplayName("This is the name of the tool"); return bd; } }