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

io.legaldocml.akn.attribute.Interval Maven / Gradle / Ivy

The newest version!
package io.legaldocml.akn.attribute;

import io.legaldocml.akn.AknObject;
import io.legaldocml.akn.type.EventRefRef;

/**
 * The start and end attributes are used to specify events that mark the beginning and the end of a time interval. Both
 * are references to eventRef elements in the lifecycle element.
 *
 * ```xml
 * 
 *   
 *   
 * 
 * ```
 *
 * @author Jacques Militello
 */
public interface Interval extends AknObject {

    EventRefRef getStart();

    void setStart(EventRefRef number);

    EventRefRef getEnd();

    void setEnd(EventRefRef number);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy