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

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

There is a newer version: 0.0.16
Show newest version
package com.github.avarabyeu.jashing.events;

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

/**
 * Number Event 
* Contains current and last values * * @author Andrei Varabyeu */ public class NumberEvent extends JashingEvent { private final int current; private final int last; public NumberEvent(int current, int last) { this.current = current; this.last = last; } public int getCurrent() { return current; } public int getLast() { return last; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy