Class Jasic.GotoStatement

  • All Implemented Interfaces:
    Jasic.Statement
    Enclosing class:
    Jasic

    public class Jasic.GotoStatement
    extends java.lang.Object
    implements Jasic.Statement
    A "goto" statement jumps execution to another place in the program.
    • Constructor Summary

      Constructors 
      Constructor Description
      GotoStatement​(java.lang.String label)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void execute()
      Statements implement this to actually perform whatever behavior the statement causes.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • GotoStatement

        public GotoStatement​(java.lang.String label)
    • Method Detail

      • execute

        public void execute()
        Description copied from interface: Jasic.Statement
        Statements implement this to actually perform whatever behavior the statement causes. "print" statements will display text here, "goto" statements will change the current statement, etc.
        Specified by:
        execute in interface Jasic.Statement