KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > jcr > impl > core > itemfilters > DepthHintFilter


1 /***************************************************************************
2  * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *
3  * Please look at license.txt in info directory for more license detail. *
4  **************************************************************************/

5
6 package org.exoplatform.services.jcr.impl.core.itemfilters;
7
8 import javax.jcr.Item;
9
10 /**
11  * Created by The eXo Platform SARL .
12  *
13  * @author <a HREF="mailto:geaz@users.sourceforge.net">Gennady Azarenkov</a>
14  * @version $Id: DepthHintFilter.java,v 1.2 2004/07/08 23:36:47 benjmestrallet Exp $
15  */

16
17 public class DepthHintFilter implements ItemFilter {
18
19   public DepthHintFilter(int depthHint) {
20   }
21
22   public boolean accept(Item item) {
23     return true;
24   }
25 }
26
Popular Tags