1 package org.lsst.ccs.utilities.beanutils;
2
3 /**
4 * Code implementing this interface are considered beans for the T type (which is not a bean!)
5 *
6 * @author bamade
7 */
8 public interface BeanFor<T> {
9 /**
10 *
11 * @return the current delegate, null if this delegate has not yet been instanciated
12 */
13 public T get() ;
14
15
16 }