01: /*
02: * Created on 14-Feb-2006
03: */
04: package uk.org.ponder.rsf.state.entity;
05:
06: /** Returns the "name" (in general managing OTP bean, probably of type
07: * BeanLocator) of an Entity, given its Class.
08: * @author Antranig Basman (antranig@caret.cam.ac.uk)
09: *
10: */
11:
12: public interface EntityNameInferrer {
13: /** Return the name of the entity for the supplied class, or <code>null</code>
14: * if this inferrer does not hold it.
15: */
16: public String getEntityName(Class entityclazz);
17: }
|