01: /*
02: * Created on May 17, 2006
03: */
04: package uk.org.ponder.stringutil;
05:
06: /** A holder for a single String value, designed for use in proxying situations
07: * where the finality of String is a problem.
08: * @author Antranig Basman (antranig@caret.cam.ac.uk)
09: *
10: */
11: public interface StringGetter {
12: public String get();
13: }
|