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

com.github.avarabyeu.jashing.events.MeterEvent Maven / Gradle / Ivy

The newest version!
package com.github.avarabyeu.jashing.events;

import com.github.avarabyeu.jashing.core.JashingEvent;

/**
 * Meter Event
 *
 * @author Andrei Varabyeu
 */
public class MeterEvent extends JashingEvent {

    private final byte value;

    public MeterEvent(byte value) {
        this.value = value;
    }

    public MeterEvent(String title, byte value) {
        this.value = value;
        setTitle(title);
    }

    public byte getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy