1 package jrre.event;
2
3 public class PopStackFrameEvent extends VMEvent {
4
5
6 private String returnValue;
7
8 public PopStackFrameEvent(String returnValue){
9
10 this.returnValue = returnValue;
11 }
12
13 /***
14 * Gets the ReturnValue.
15 */
16 public String getReturnValue(){
17 return this.returnValue;
18 }
19
20 /***
21 * Sets the ReturnValue.
22 * @param ReturnValue The value to set it to.
23 */
24 public void setReturnValue(String returnValue){
25 this.returnValue = returnValue;
26 }
27
28 }
This page was automatically generated by Maven