View Javadoc
1   package io.guixer.lang.command;
2   
3   import static com.google.common.base.Preconditions.checkNotNull;
4   
5   import io.guixer.types.StepType;
6   
7   public class SwitchToFrameCommand implements Command {
8   
9   	@Override
10  	public StepType getType() {
11  
12  		return StepType.SWITCH_TO_FRAME;
13  	}
14  
15  	public final String frameName;
16  
17  	@Override
18  	public String toString() {
19  
20  		return "SwitchToFrame: " + frameName;
21  	}
22  
23  	public SwitchToFrameCommand(
24  		final String frameName
25  	) {
26  
27  		this.frameName = checkNotNull(frameName, "frameName");
28  	}
29  }