Skip to content
Snippets Groups Projects
Commit 535fdadd authored by felmer's avatar felmer
Browse files

LMS-257 slightly modified interface

SVN: 4502
parent 63df5f5f
No related branches found
No related tags found
No related merge requests found
...@@ -23,8 +23,11 @@ package ch.systemsx.cisd.common.parser; ...@@ -23,8 +23,11 @@ package ch.systemsx.cisd.common.parser;
*/ */
public interface IPropertiesSetter<T> public interface IPropertiesSetter<T>
{ {
void setProperty(String name, String valueOrNull); /**
* Sets the property specified by <code>name</code> to the specified value.
*/
void setProperty(String name, String value);
/** returns constructed object, called after setting properties values */ /** Creates an object of type <code>T</code>. Will be called after setting properties values. */
T getConstructedObject(); T getConstructedObject();
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment