/* */
/* */ private String getLocation(ValidationEvent event)
/* */ {
/* 85 */ StringBuffer msg = new StringBuffer();
/* */
/* 87 */ ValidationEventLocator locator = event.getLocator();
/* */
/* 89 */ if (locator != null)
/* */ {
/* 91 */ URL url = locator.getURL();
/* 92 */ Object obj = locator.getObject();
/* 93 */ Node node = locator.getNode();
/* 94 */ int line = locator.getLineNumber();
/* */
/* 96 */ if ((url != null) || (line != -1)) {
/* 97 */ msg.append("line " + line);
/* 98 */ if (url != null)
/* 99 */ msg.append(" of " + url);