ADDED SimpleStore, cuz I forgot to add it

This commit is contained in:
sponge
2008-09-28 16:36:59 +00:00
parent 61749aaaa9
commit 5913d9ee4a

View File

@ -0,0 +1,35 @@
/*
* This is free software, do as you please.
*/
package net.i2p.util;
/**
*
* @author sponge
*/
public class SimpleStore {
private boolean answer;
SimpleStore(boolean x) {
answer=x;
}
/**
* set the answer
*
* @param x
*/
public void setAnswer(boolean x) {
answer = x;
}
/**
*
* @return boolean
*/
public boolean getAnswer() {
return answer;
}
}