1 package jfun.yan.xml;2 3 /**4 * Anything that has a Location.5 * @author Ben Yu6 */7 public interface LocationAware {8 public Location getLocation();9 }10