public override bool sameContent(WindowContent content)
 {
     return(content.GetType() == this.GetType() && this.terminalManager.Equals(((TerminalListContent)content).terminalManager));
 }
Exemple #2
0
 public override bool sameContent(WindowContent content)
 {
     return(content.GetType() == this.GetType() &&
            ((LogicGraphContent)content).graph.Equals(this.graph));
 }
 public override bool sameContent(WindowContent content)
 {
     return(content.GetType() == this.GetType() && ((EnterTextContent)content).instructions.Equals(this.instructions));
 }
Exemple #4
0
 public override bool sameContent(WindowContent content)
 {
     return(this.GetType() == content.GetType());
 }
 public override bool sameContent(WindowContent content)
 {
     return(this.GetType() == content.GetType() &&
            ((TerminalInfoContent)content).getTerminal().Equals(this.terminalController));
 }
Exemple #6
0
 public override bool sameContent(WindowContent content)
 {
     return(content.GetType() == this.GetType() && ((TerminalConnectionsContent)content).terminal.Equals(this.terminal));
 }
Exemple #7
0
 public override bool sameContent(WindowContent content)
 {
     return(content.GetType() == this.GetType() && ((GUIContents)content).getGUI().Equals(this.gui));
 }