FileDocCategorySizeDatePackage
DisplayableNode.javaAPI DocHibernate 3.2.5455Tue Jul 12 15:27:30 BST 2005org.hibernate.hql.ast.tree

DisplayableNode.java

// $Id: DisplayableNode.java 7460 2005-07-12 20:27:29Z steveebersole $
package org.hibernate.hql.ast.tree;

/**
 * Implementors will return additional display text, which will be used
 * by the ASTPrinter to display information (besides the node type and node
 * text).
 */
public interface DisplayableNode {
	/**
	 * Returns additional display text for the AST node.
	 *
	 * @return String - The additional display text.
	 */
	String getDisplayText();
}