edu.udo.cs.ie.cowbots.elpParser.dlp
Interface DLPTerm

Package class diagram package DLPTerm
All Known Implementing Classes:
DLPConstant, DLPOperator, DLPVariable

public interface DLPTerm

let constants, variables and lists of mix(variable, constants, comparative operator, arithmetic operator) like a term to act.


Method Summary
 java.lang.String getName()
          get variable or constant or operator back
 boolean isArithOP()
          if this is arithmetic operator or not
 boolean isCompOP()
          if this is comparative operator or not
 boolean isOperator()
          if this is operator or not
 

Method Detail

getName

java.lang.String getName()
get variable or constant or operator back

Returns:

isOperator

boolean isOperator()
if this is operator or not

Returns:

isArithOP

boolean isArithOP()
if this is arithmetic operator or not

Returns:

isCompOP

boolean isCompOP()
if this is comparative operator or not

Returns: