Class MethodAccess


  • public class MethodAccess
    extends Suffix
    Invoke a method on an object.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.lang.String name
      The name of the method.
      protected Expression[] parametervalues
      The parameter value expressions.
    • Constructor Summary

      Constructors 
      Constructor Description
      MethodAccess​(java.lang.String name, Expression[] parametervalues)
      Create a new method access.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean containsVariable​(Variable var)
      Test if a variable is contained in the suffix.
      boolean equals​(java.lang.Object o)
      Test if this method access is equal to some object.
      java.lang.String getName()
      Get the name of the method.
      Expression[] getParameterValues()
      Get the parameter values expressions (if any).
      int hashCode()
      Get the hash code of this unary expression.
      java.lang.String toString()
      Get a string representation of this method access.
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Field Detail

      • name

        protected java.lang.String name
        The name of the method.
      • parametervalues

        protected Expression[] parametervalues
        The parameter value expressions.
    • Constructor Detail

      • MethodAccess

        public MethodAccess​(java.lang.String name,
                            Expression[] parametervalues)
        Create a new method access.
        Parameters:
        name - The method name.
        parametervalues - Expressions for the parameter values (if any).
    • Method Detail

      • containsVariable

        public boolean containsVariable​(Variable var)
        Test if a variable is contained in the suffix.
        Specified by:
        containsVariable in class Suffix
        Parameters:
        var - The variable.
        Returns:
        True, when the variable is contained.
      • getName

        public java.lang.String getName()
        Get the name of the method.
      • getParameterValues

        public Expression[] getParameterValues()
        Get the parameter values expressions (if any).
      • toString

        public java.lang.String toString()
        Get a string representation of this method access.
        Overrides:
        toString in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object o)
        Test if this method access is equal to some object.
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Get the hash code of this unary expression.
        Overrides:
        hashCode in class java.lang.Object