1 26 27 package com.bull.eclipse.jonas.utils.xml.desc; 28 29 30 34 public class WebAppDTDs extends CommonsDTDs { 35 36 39 private static final String [] WEBAPP_DTDS = new String [] { 40 "web-app_2_2.dtd", 41 "web-app_2_3.dtd" 42 }; 43 44 47 private static final String [] WEBAPP_DTDS_PUBLIC_ID = new String [] { 48 "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN", 49 "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN", 50 }; 51 52 53 54 57 public WebAppDTDs() { 58 super(); 59 addMapping(WEBAPP_DTDS, WEBAPP_DTDS_PUBLIC_ID); 60 } 61 62 } 63 | Popular Tags |