View Javadoc

1   package org.catacomb.interlish.interact;
2   
3   
4   
5   // tag anything that is directly addable to panels as a DComponent (eg then know it is safe to cast to
6   // a JComponent in the case that we're using swing)
7   
8   public interface DComponent {
9   
10      public void setTooltip(String s);
11  
12  }