18 lines
333 B
Java
18 lines
333 B
Java
package be.jeffcheasey88.peeratcode.parser.java.operation;
|
|
|
|
import be.jeffcheasey88.peeratcode.parser.java.Value;
|
|
|
|
public class SynchronizedOperation extends OperationBag{
|
|
|
|
private Value value;
|
|
|
|
public SynchronizedOperation(Value value){
|
|
super();
|
|
this.value = value;
|
|
}
|
|
|
|
public Value getValue(){
|
|
return this.value;
|
|
}
|
|
|
|
}
|