Class MLFunction

  • All Implemented Interfaces:
    java.io.Serializable

    public class MLFunction
    extends java.lang.Object
    implements java.io.Serializable
    MLFunction is a simple class that is nothing more than a holder for a function name and argument count.

    MLFunction is returned by the getFunction() method in the MathLink interface.

    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      int argCount
      The function's argument count.
      java.lang.String name
      The function's name.
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected MLFunction​(java.lang.String name, int argc)  
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • name

        public java.lang.String name
        The function's name.
      • argCount

        public int argCount
        The function's argument count.
    • Constructor Detail

      • MLFunction

        protected MLFunction​(java.lang.String name,
                             int argc)