Interface AutoGenInstruction
-
- All Known Implementing Classes:
BaseInstruction
public interface AutoGenInstruction
TheAutoGenInstruction
interface for instructions used in the template auto generation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getCommand()
Returns the command syntax.boolean
getFields()
Returns the command fields.java.lang.String[]
getPostCommand()
java.lang.String
getPreCommand()
Returns preparation command set.boolean
isArithmeticOperation()
boolean
isBranchOperation()
boolean
isLoadOperation()
boolean
isStoreOperation()
void
printOperation()
-
-
-
Method Detail
-
getFields
boolean getFields()
Returns the command fields.- Returns:
- command fields.
-
getCommand
java.lang.String getCommand()
Returns the command syntax.- Returns:
- command syntax.
-
getPreCommand
java.lang.String getPreCommand()
Returns preparation command set.- Returns:
- command set.
-
getPostCommand
java.lang.String[] getPostCommand()
-
isBranchOperation
boolean isBranchOperation()
-
isStoreOperation
boolean isStoreOperation()
-
isLoadOperation
boolean isLoadOperation()
-
isArithmeticOperation
boolean isArithmeticOperation()
-
printOperation
void printOperation()
-
-