KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > resource > include > IncludeContextFactory


1 package org.sapia.resource.include;
2
3 /**
4  * Models a factory of {@link org.sapia.resource.include.IncludeContext}s. This class is meant
5  * to be implemented by applications that need resource inclusion features.
6  *
7  * @see org.sapia.resource.include.IncludeContext
8  *
9  * @author yduchesne
10  *
11  */

12 public interface IncludeContextFactory {
13   
14   /**
15    * @return a new <code>IncludeContext</code>.
16    */

17   public IncludeContext createInstance();
18
19 }
20
Popular Tags