コード例 #1
0
 @SuppressWarnings("unchecked")
 public Grid<Container> getGreatParent() {
   AWTGrid rv = this;
   synchronized (mutex) {
     while (!rv.isGreatParentImpl()) {
       rv = (AWTGrid) rv.getPeers().getOwner();
     }
     return rv;
   }
 }