com.nedap.archie.rm.datavalues.SingleValuedDataValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openehr-rm Show documentation
Show all versions of openehr-rm Show documentation
An implementation of the openehr reference model
package com.nedap.archie.rm.datavalues;
/**
* Created by pieter.bos on 04/11/15.
*/
public interface SingleValuedDataValue {
Type getValue();
void setValue(Type type);
}