openehr4j / openehr-rm-4j

Java interface declarations for the openEHR RM component
https://openehr4j.github.io/openehr-rm-4j/
1 stars 0 forks source link

Don't use com.sun.jdi.Locatable #5

Open jmewes opened 1 year ago

jmewes commented 2 months ago
package io.github.openehr4j.rm.data_structures.history;

import io.github.openehr4j.rm.data_structures.item_structure.ItemStructure;
import org.openehr.rm.data_types.date_time.DvDateTime;
import org.openehr.rm.data_types.date_time.DvDuration;

public interface Event {
// FIXME public interface Event extends Locatable {

  DvDateTime getTime();

  ItemStructure getState();

  Object getData();

  DvDuration offset();
}