Imported GNU Classpath 0.19 + gcj-import-20051115.

* sources.am: Regenerated.
       * Makefile.in: Likewise.
       * scripts/makemake.tcl: Use glob -nocomplain.

From-SVN: r107049
This commit is contained in:
Mark Wielaard 2005-11-15 23:20:01 +00:00
parent 02e549bfaa
commit 8f523f3a10
1241 changed files with 97711 additions and 25284 deletions

View file

@ -46,22 +46,24 @@ import javax.swing.JTree;
* TreeCellRenderer public interface
* @author Andrew Selkirk
*/
public interface TreeCellRenderer {
public interface TreeCellRenderer
{
/**
* getTreeCellRendererComponent
* @param tree TODO
* @param value TODO
* @param selected TODO
* @param expanded TODO
* @param leaf TODO
* @param row TODO
* @param us TODO
* @returns TODO
*/
Component getTreeCellRendererComponent(JTree tree,
Object value, boolean selected, boolean expanded,
boolean leaf, int row, boolean hasFocus);
/**
* getTreeCellRendererComponent
* @param tree TODO
* @param value TODO
* @param selected TODO
* @param expanded TODO
* @param leaf TODO
* @param row TODO
* @param hasFocus TODO
* @returns TODO
*/
Component getTreeCellRendererComponent(JTree tree, Object value,
boolean selected, boolean expanded,
boolean leaf, int row,
boolean hasFocus);
} // TreeCellRenderer
}