KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > bridge > jsp > taglib > tree > DepthProvider


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10 package org.mmbase.bridge.jsp.taglib.tree;
11
12
13 /**
14  * @author Michiel Meeuwissen
15  * @since MMBase-1.7
16  * @version $Id: DepthProvider.java,v 1.2 2004/02/11 20:40:13 keesj Exp $
17  */

18 public interface DepthProvider {
19
20     /**
21      * Returns the 'size' of the current cluster node (the number of steps (minus the relation steps))
22      */

23     public int getDepth();
24
25
26 }
27
28
Popular Tags