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

tfw.tsm.ecd.BooleanECD Maven / Gradle / Ivy

package tfw.tsm.ecd;

import tfw.value.ClassValueConstraint;

/**
 * A java.lang.Boolean event channel descritpion
 */
public class BooleanECD extends ObjectECD {
    /**
     * Creates an event channel description with the specified name.
     * @param name the name of the event channel.
     */
    public BooleanECD(String name) {
        super(name, ClassValueConstraint.BOOLEAN);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy