Ejemplo n.º 1
0
 boolean isExactlyUnder(ZLTextRegion other) {
   if (other == null) {
     return true;
   }
   if (!isUnder(other)) {
     return false;
   }
   final ZLTextElementArea[] areas0 = textAreas();
   final ZLTextElementArea[] areas1 = other.textAreas();
   for (ZLTextElementArea i : areas0) {
     for (ZLTextElementArea j : areas1) {
       if (i.XStart <= j.XEnd && j.XStart <= i.XEnd) {
         return true;
       }
     }
   }
   return false;
 }