Raptor.ProgramParser.Statements
Class Skip

java.lang.Object
  extended by Raptor.ProgramParser.Statements.Instruction
      extended by Raptor.ProgramParser.Statements.Skip
All Implemented Interfaces:
java.io.Serializable

public class Skip
extends Instruction

A skip instruction.
Extends abstract Instruction class.

See Also:
Serialized Form

Constructor Summary
Skip()
          Constructs a new Skip instruction.
 
Method Summary
 java.lang.String clashes(PanSignature pSignature)
          Returns a String containing an Error character if this Formula clashes with the passed PanSignature, Otherwise it will return an Empty String ""
A Skip Statement doesn't clash with the signature.
 java.lang.String display()
          Returns a String to display the skip instruction.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Skip

public Skip()
Constructs a new Skip instruction.

Method Detail

display

public java.lang.String display()
Returns a String to display the skip instruction.

Specified by:
display in class Instruction

clashes

public java.lang.String clashes(PanSignature pSignature)
Returns a String containing an Error character if this Formula clashes with the passed PanSignature, Otherwise it will return an Empty String ""
A Skip Statement doesn't clash with the signature.

Specified by:
clashes in class Instruction
Parameters:
pSignature - PanSignature represents the PanSignature to be checked if this Formula clashes with.