KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jodd > petite > scope > DefaultScope


1 // Copyright (c) 2003-2007, Jodd Team (jodd.sf.net). All Rights Reserved.
2

3 package jodd.petite.scope;
4
5 /**
6  * Default Petite container scope.
7  * It serves only as a marker for default container scope.
8  */

9 public final class DefaultScope implements Scope {
10
11     public Object JavaDoc lookup(String JavaDoc name) {
12         return null;
13     }
14
15     public void register(String JavaDoc name, Object JavaDoc object) {
16     }
17 }
18
Popular Tags