1 // $Id: PathNode.java,v 1.1 2005/07/12 20:27:16 steveebersole Exp $ 2 package org.hibernate.hql.ast.tree; 3 4 /** 5 * An AST node with a path property. This path property will be the fully qualified name. 6 * 7 * @author josh Nov 7, 2004 10:56:49 AM 8 */ 9 public interface PathNode { 10 /** 11 * Returns the full path name represented by the node. 12 * 13 * @return the full path name represented by the node. 14 */ 15 String getPath(); 16 } 17