/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
 */
package org.hibernate.hql.internal.ast.tree;


An AST node with a path property. This path property will be the fully qualified name.
Author:josh
/** * An AST node with a path property. This path property will be the fully qualified name. * * @author josh */
public interface PathNode {
Returns the full path name represented by the node.
Returns:the full path name represented by the node.
/** * Returns the full path name represented by the node. * * @return the full path name represented by the node. */
String getPath(); }