コード例 #1
0
 public boolean isEntityUnparsed(String name) {
   if (fEntities != null) {
     EntityDeclaration entityDecl = (EntityDeclaration) fEntities.get(name);
     // If the entity is associated with a notation then it must be an unparsed entity.
     if (entityDecl != null) {
       return (entityDecl.getNotationName() != null);
     }
   }
   return false;
 }