1 26 27 28 package org.objectweb.jonas_lib.deployment.api; 29 30 import org.xml.sax.SAXParseException ; 32 33 34 40 41 public abstract class AbsDeploymentDesc implements DeploymentDesc { 42 43 44 47 protected String displayName = null; 48 49 50 54 public String getDisplayName() { 55 return displayName; 56 } 57 58 62 public abstract String toString(); 63 64 72 protected static String getSAXMsg(String fileName, 73 SAXParseException exception, String msg) { 74 String ret = fileName + ":" + exception.getLineNumber() + ":" 75 + exception.getColumnNumber() + ": "; 76 ret += msg; 77 return ret; 78 } 79 80 } 81 | Popular Tags |