Example #1
0
 Widget[] computeTabList() {
   if (isTabGroup()) {
     if (getEnabled()) {
       if ((style & SWT.SEPARATOR) != 0) {
         if (control != null) return control.computeTabList();
       } else {
         return new Widget[] {this};
       }
     }
   }
   return new Widget[0];
 }