コード例 #1
0
 /** Set this property to be important. Overrides this method for a macro */
 public void setImportant() {
   if (top != null) {
     top.setImportant();
   }
   if (right != null) {
     right.setImportant();
   }
   if (left != null) {
     left.setImportant();
   }
   if (bottom != null) {
     bottom.setImportant();
   }
 }