@Override
 @SuppressWarnings("unchecked")
 public V attach(final Layer layer) {
   if (null == colExpButton && isExpandable()) {
     colExpButton = createExpandCollapseButton();
     layer.add(colExpButton);
   }
   layer.add(getPalette());
   return (V) this;
 }
示例#2
0
 Entity(Layer panel) {
   marm = panel;
   if (panel != null) marm.add(this);
 }