示例#1
0
 /**
  * Gets the JavaScript property "parseError" for the document.
  *
  * @return the ParserError object for the document
  */
 public XMLDOMParseError jsxGet_parseError() {
   if (parseError_ == null) {
     parseError_ = new XMLDOMParseError();
     parseError_.setPrototype(getPrototype(parseError_.getClass()));
     parseError_.setParentScope(getParentScope());
   }
   return parseError_;
 }
示例#2
0
 /**
  * Gets the JavaScript property "parseError" for the document.
  *
  * @return the ParserError object for the document
  */
 @JsxGetter({@WebBrowser(IE), @WebBrowser(CHROME)})
 public XMLDOMParseError getParseError() {
   if (parseError_ == null) {
     parseError_ = new XMLDOMParseError();
     parseError_.setPrototype(getPrototype(parseError_.getClass()));
     parseError_.setParentScope(getParentScope());
   }
   return parseError_;
 }