org.sdmlib.models.taskflows.SDMTimer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SDMLib Show documentation
Show all versions of SDMLib Show documentation
SDMLib is a light weight modeling library. SDMLib intentionally comes without any tool or editor.
/*
Copyright (c) 2012 zuendorf
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
and associated documentation files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish, distribute,
sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or
substantial portions of the Software.
The Software shall be used for Good, not Evil.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package org.sdmlib.models.taskflows;
import java.beans.PropertyChangeSupport;
import java.util.Timer;
import java.util.TimerTask;
import org.sdmlib.serialization.PropertyChangeInterface;
import de.uniks.networkparser.interfaces.SendableEntity;
import java.beans.PropertyChangeListener;
/**
*
* @see
* TaskFlowObjectScenarioForCoverage.java
* @see
* TaskFlowModel.java
* @see TaskFlowModel.java
* @see TaskFlowObjectScenarioForCoverage.java
*/
public class SDMTimer extends Timer implements PropertyChangeInterface, SendableEntity {
/**
* @param name The name of SDMTimer
* @see
* TaskFlowObjectScenarioForCoverage.java
* @see TaskFlowObjectScenarioForCoverage.java
*/
public SDMTimer(String name) {
super(name);
}
/**
*
* @see
* TaskFlowObjectScenarioForCoverage.java
* @see
* TaskFlowObjectScenarioForCoverage.java
* @see TaskFlowObjectScenarioForCoverage.java
*/
public SDMTimer() {
}
private long lastScheduleTime = 0;
// ==========================================================================
public void schedule(TimerTask task) {
long now = System.currentTimeMillis();
long delay = 0;
if (now <= lastScheduleTime) {
// this milli second has already been used. Use next free to achieve
// stable schedule
delay = lastScheduleTime - now + 1;
lastScheduleTime++;
} else {
delay = 0;
lastScheduleTime = now;
}
super.schedule(task, delay);
}
// ==========================================================================
public Object get(String attrName) {
int pos = attrName.indexOf('.');
String attribute = attrName;
if (pos > 0) {
attribute = attrName.substring(0, pos);
}
return null;
}
// ==========================================================================
public boolean set(String attrName, Object value) {
return false;
}
// ==========================================================================
protected PropertyChangeSupport listeners = new PropertyChangeSupport(this);
public PropertyChangeSupport getPropertyChangeSupport() {
return listeners;
}
public boolean addPropertyChangeListener(PropertyChangeListener listener)
{
getPropertyChangeSupport().addPropertyChangeListener(listener);
return true;
}
public boolean addPropertyChangeListener(String propertyName, PropertyChangeListener listener) {
getPropertyChangeSupport().addPropertyChangeListener(propertyName, listener);
return true;
}
public boolean removePropertyChangeListener(PropertyChangeListener listener) {
getPropertyChangeSupport().removePropertyChangeListener(listener);
return true;
}
// ==========================================================================
public void removeYou() {
getPropertyChangeSupport().firePropertyChange("REMOVE_YOU", this, null);
// super.removeYou();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy