Class NFPropertyInfo

  • Direct Known Subclasses:
    NFRPropertyInfo

    public class NFPropertyInfo
    extends java.lang.Object
    Info struct for a nf property.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected jadex.bridge.ClassInfo clazz
      The property class.
      protected java.lang.String name
      The property name.
      protected java.util.List<jadex.bridge.modelinfo.UnparsedExpression> parameters
      The parameters (optional).
    • Constructor Summary

      Constructors 
      Constructor Description
      NFPropertyInfo()
      Create a new property.
      NFPropertyInfo​(java.lang.String name, jadex.bridge.ClassInfo clazz, java.util.List<jadex.bridge.modelinfo.UnparsedExpression> parameters)
      Create a new property.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      jadex.bridge.ClassInfo getClazz()
      Get the clazz.
      java.lang.String getName()
      Get the name.
      java.util.List<jadex.bridge.modelinfo.UnparsedExpression> getParameters()
      Get the parameters.
      void setClazz​(jadex.bridge.ClassInfo clazz)
      Set the clazz.
      void setName​(java.lang.String name)
      Set the name.
      void setParameters​(java.util.List<jadex.bridge.modelinfo.UnparsedExpression> parameters)
      Set the parameters.
      • Methods inherited from class java.lang.Object

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

      • name

        protected java.lang.String name
        The property name.
      • clazz

        protected jadex.bridge.ClassInfo clazz
        The property class.
      • parameters

        protected java.util.List<jadex.bridge.modelinfo.UnparsedExpression> parameters
        The parameters (optional).
    • Constructor Detail

      • NFPropertyInfo

        public NFPropertyInfo()
        Create a new property.
      • NFPropertyInfo

        public NFPropertyInfo​(java.lang.String name,
                              jadex.bridge.ClassInfo clazz,
                              java.util.List<jadex.bridge.modelinfo.UnparsedExpression> parameters)
        Create a new property.
        Parameters:
        name - The name.
        clazz - The clazz.
    • Method Detail

      • getName

        public java.lang.String getName()
        Get the name.
        Returns:
        The name.
      • setName

        public void setName​(java.lang.String name)
        Set the name.
        Parameters:
        name - The name to set.
      • getClazz

        public jadex.bridge.ClassInfo getClazz()
        Get the clazz.
        Returns:
        The clazz.
      • setClazz

        public void setClazz​(jadex.bridge.ClassInfo clazz)
        Set the clazz.
        Parameters:
        clazz - The clazz to set.
      • getParameters

        public java.util.List<jadex.bridge.modelinfo.UnparsedExpression> getParameters()
        Get the parameters.
        Returns:
        The parameters
      • setParameters

        public void setParameters​(java.util.List<jadex.bridge.modelinfo.UnparsedExpression> parameters)
        Set the parameters.
        Parameters:
        parameters - The parameters to set