~ubuntu-branches/ubuntu/wily/libhibernate3-java/wily-proposed

« back to all changes in this revision

Viewing changes to src/org/hibernate/hql/ast/tree/PathNode.java

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-10-14 14:43:34 UTC
  • Revision ID: james.westby@ubuntu.com-20071014144334-eamc8i0q10gs1aro
Tags: upstream-3.2.5
ImportĀ upstreamĀ versionĀ 3.2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// $Id: PathNode.java 7460 2005-07-12 20:27:29Z steveebersole $
 
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
}