Interface PropertyVisitor

  • All Known Implementing Classes:
    ProgramMerge

    public interface PropertyVisitor
    PropertyVisitor is an interface for use with user defined properties when you know the name of the property but not its type.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void visit()
      Handle the case of a void property type.
      void visit​(int value)
      Handle the case of an int property type.
      void visit​(Saveable value)
      Handle the case of a Saveable property type
      void visit​(java.lang.Object value)
      Handle the case of an Object property type.
      void visit​(java.lang.String value)
      Handle the case of a String property type.
    • Method Detail

      • visit

        void visit()
        Handle the case of a void property type.
      • visit

        void visit​(java.lang.String value)
        Handle the case of a String property type.
      • visit

        void visit​(java.lang.Object value)
        Handle the case of an Object property type.
      • visit

        void visit​(Saveable value)
        Handle the case of a Saveable property type
      • visit

        void visit​(int value)
        Handle the case of an int property type.