コード例 #1
0
 public int getLineNumber() {
   Location loc = getLocation();
   if (loc != null) {
     return loc.getLineNumber();
   }
   return -1;
 }
コード例 #2
0
 public String getSystemId() {
   Location loc = getLocation();
   if (loc != null) {
     return loc.getSystemId();
   }
   return null;
 }
コード例 #3
0
 public int getCharacterOffset() {
   Location loc = getLocation();
   if (loc != null) {
     return loc.getCharacterOffset();
   }
   return -1;
 }