import com.sun.tools.xjc.*;

/**
 * Provides the way to create the JAXB java Class file
 *
 * @author   Takuya Yamashita
 */
public class XjcPhones {
  /**
   * Provides the path for dtd file
   */
  static String dtd = "./xjc/phones.dtd";
  /**
   * Provides the path for xml file
   */
  static String xjs = "./xjc/phones_xjs.xml";
  /**
   * Provides the option to change the path to store the Java file
   */
  static String option = "-d";
  /**
   * Provides the source file path
   */
  static String path = "./src";

  /**
   * The main program for the XjcPhones class
   *
   * @param arguments      The command line arguments
   * @exception Exception  Description of the Exception
   */
  public static void main(String[] arguments) throws Exception {
    Main.main(new String[]{dtd, xjs, option, path});
  }
}