1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
package com.wutka.dtd;
import java.io.*;
/** Represents the possible values for an attribute declaration
*
* @author Mark Wutka
* @version $Revision: 1.16 $ $Date: 2002/07/19 01:20:11 $ by $Author: wutka $
*/
public class DTDDecl implements DTDOutput
{
public static final DTDDecl FIXED = new DTDDecl(0, "FIXED");
public static final DTDDecl REQUIRED = new DTDDecl(1, "REQUIRED");
public static final DTDDecl IMPLIED = new DTDDecl(2, "IMPLIED");
public static final DTDDecl VALUE = new DTDDecl(3, "VALUE");
public int type;
public String name;
public DTDDecl(int aType, String aName)
{
type = aType;
name = aName;
}
public boolean equals(Object ob)
{
if (ob == this) return true;
if (!(ob instanceof DTDDecl)) return false;
DTDDecl other = (DTDDecl) ob;
if (other.type == type) return true;
return false;
}
public void write(PrintWriter out)
throws IOException
{
if (this == FIXED)
{
out.print(" #FIXED");
}
else if (this == REQUIRED)
{
out.print(" #REQUIRED");
}
else if (this == IMPLIED)
{
out.print(" #IMPLIED");
}
// Don't do anything for value since there is no associated DTD keyword
}
}
|