com.flash3388.flashlib.net.obsr.EntryModificationEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flashlib.net.core Show documentation
Show all versions of flashlib.net.core Show documentation
Robotics development framework (flashlib.net.core)
The newest version!
package com.flash3388.flashlib.net.obsr;
import com.notifier.Event;
public class EntryModificationEvent implements Event {
private final StoredEntry mEntry;
private final String mPath;
private final Value mValue;
private final ModificationType mType;
public EntryModificationEvent(StoredEntry entry, String path, Value value, ModificationType type) {
mEntry = entry;
mPath = path;
mValue = value;
mType = type;
}
public StoredEntry getEntry() {
return mEntry;
}
public String getPath() {
return mPath;
}
public Value getValue() {
return mValue;
}
public ModificationType getType() {
return mType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy