001package edu.pdx.cs.joy.airline;
002
003import edu.pdx.cs.joy.ProjectXmlHelper;
004
005/**
006 * This class provides easy access to the SYSTEM and PUBLIC ids for the
007 * Airline XML DTD and implements some convenient error handling methods.
008 */
009public class AirlineXmlHelper extends ProjectXmlHelper {
010
011  /** The Public ID for the Family Tree DTD */
012  protected static final String PUBLIC_ID =
013    "-//Joy of Coding at PSU//DTD Airline//EN";
014
015
016  public AirlineXmlHelper() {
017    super(PUBLIC_ID, "airline.dtd");
018  }
019}