01: /* 02: * Copyright (c) 1998 Sun Microsystems, Inc. All Rights Reserved. 03: */ 04: 05: package com.sun.xml.dtdparser; 06: 07: final class InternalEntity extends EntityDecl { 08: InternalEntity(String name, char value[]) { 09: this .name = name; 10: this .buf = value; 11: } 12: 13: char buf[]; 14: }