peer-at-code-parser-java/src/be/jeffcheasey88/peeratcode/parser/java/operation/SynchronizedOperation.java
2023-09-18 09:02:35 +02:00

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;
}
}