01: /*
02: * SimpleObjectDescFactory.java
03: *
04: * Copyright (c) 2007 Sun Microsystems, Inc. All Rights Reserved.
05: *
06: * See the file "LICENSE.txt" for information on usage and redistribution
07: * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
08: */
09: package org.pnuts.tinybeans;
10:
11: import org.pnuts.lang.ObjectDesc;
12: import org.pnuts.lang.ObjectDescFactory;
13:
14: public class SimpleObjectDescFactory extends ObjectDescFactory {
15:
16: public ObjectDesc create(Class cls) {
17: return new SimpleObjectDesc(cls);
18: }
19: }
|