2016 Update
This commit is contained in:
parent
948b86eafa
commit
dcf5d15da3
7965 changed files with 139854 additions and 31002 deletions
|
|
@ -1,12 +1,13 @@
|
|||
public class HistoryVariable
|
||||
{
|
||||
public HistoryVariable(final Object v)
|
||||
private Object value;
|
||||
|
||||
public HistoryVariable(Object v)
|
||||
{
|
||||
super();
|
||||
value = v;
|
||||
}
|
||||
|
||||
public void update(final Object v)
|
||||
public void update(Object v)
|
||||
{
|
||||
value = v;
|
||||
}
|
||||
|
|
@ -25,6 +26,4 @@ public class HistoryVariable
|
|||
public void dispose()
|
||||
{
|
||||
}
|
||||
|
||||
private Object value;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue