01: /*
02: * Created on Jun 10, 2005
03: *
04: */
05: package com.jofti.core;
06:
07: /**
08: *
09: *
10: * Interface for a NameSpace. Implmentstions should provide a getDelegate method to enable the real namespace object to be recovered.<p>
11: *
12: *
13: * @author xenephon (xenephon@jofti.com)
14: * @version 1.0
15: */
16: public interface INameSpace {
17:
18: public Object getDelegate();
19: }
|