예제 #1
0
 /**
  * Is override="yes"?.
  *
  * @return true if override="yes" was specified, otherwise false
  */
 public boolean isOverriding() {
   if (overrideAtt == null) {
     // this is a forwards reference
     try {
       prepareAttributes();
     } catch (XPathException e) {
       // no action: error will be caught later
     }
   }
   return override;
 }