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 lookup(String name) {12 return null;13 }14 15 public void register(String name, Object object) {16 }17 }18