View Javadoc
1   package net.avcompris.guixer.core;
2   
3   import java.io.IOException;
4   
5   public interface SwitchTo {
6   
7   	Command defaultContent() throws IOException;
8   
9   	Command parentFrame() throws IOException;
10  
11  	Command frame(String name) throws IOException;
12  }