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

com.nedap.archie.rules.Constraint Maven / Gradle / Ivy

There is a newer version: 3.12.0
Show newest version
package com.nedap.archie.rules;


import com.nedap.archie.aom.CPrimitiveObject;

/**
 * Created by pieter.bos on 27/10/15.
 */
public class Constraint> extends Leaf {

    private T item;

    public Constraint() {

    }

    public Constraint(T item) {
        this.item = item;
    }

    public T getItem() {
        return item;
    }

    public void setItem(T item) {
        this.item = item;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy