1 38 39 package com.sun.xml.fastinfoset; 40 41 public class UnparsedEntity extends Notation { 42 public final String notationName; 43 44 45 public UnparsedEntity(String _name, String _systemIdentifier, String _publicIdentifier, String _notationName) { 46 super(_name, _systemIdentifier, _publicIdentifier); 47 notationName = _notationName; 48 } 49 50 } 51 | Popular Tags |