All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.customed.diag.evaluation.exportpool.ExportElement Maven / Gradle / Ivy

Go to download

custo diagnostic server by custo med is part of the custo diagnostic medical product. In custo diagnostic, the entire cardiopulmonary functional diagnostics is integrated in one consistent and modular user interface. Our central software platform allows you to work consistently in all applications - from the single-user workstation to the multi-site solution.

The newest version!
package de.customed.diag.evaluation.exportpool;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Created by david on 28.07.16.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
public @interface ExportElement {
	String key();
	String description() default "";
	String unit() default "";
	ExportElementType type() default ExportElementType.MEASUREMENT;
	String[] typicalKeys() default {};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy