KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > format > template > AbstractContext


1 /*****************************************
2  * *
3  * JBoss Portal: The OpenSource Portal *
4  * *
5  * Distributable under LGPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  *****************************************/

9
10 package org.jboss.portal.format.template;
11
12 import java.util.Iterator JavaDoc;
13
14 /**
15  * @author <a HREF="mailto:julien@jboss.org">Julien Viet</a>
16  * @version $Revision: 1.1.1.1 $
17  */

18 public abstract class AbstractContext implements Context
19 {
20    public Iterator JavaDoc childIterator(String JavaDoc name)
21    {
22       throw new UnsupportedOperationException JavaDoc();
23    }
24    public String JavaDoc get(String JavaDoc o)
25    {
26       throw new UnsupportedOperationException JavaDoc();
27    }
28    public Context put(String JavaDoc key, String JavaDoc value)
29    {
30       throw new UnsupportedOperationException JavaDoc();
31    }
32 }
33
Popular Tags