Interface SlideModifiedListener


  • public interface SlideModifiedListener
    Listener to listen to modifications in Slide. Note: Notifications are only fired, when modifications occur through user interface.
    Since:
    9.12.0
    • Method Detail

      • titleModified

        void titleModified​(List<Slide> slides)
        Called when title of the given slides is modified.
        Parameters:
        slides - the slides
        Since:
        9.12.0
      • descriptionModified

        void descriptionModified​(List<Slide> slides)
        Called when description of the given slides is modified.
        Parameters:
        slides - the slides
        Since:
        9.12.0
      • statusModified

        void statusModified​(List<Slide> slides)
        Called when status of the given slides is modified.
        Parameters:
        slides - the slides
        Since:
        9.12.0
      • typeModified

        void typeModified​(List<Slide> slides)
        Called when type of the given slides is modified.
        Parameters:
        slides - the slides
        Since:
        9.12.0
      • stageModified

        void stageModified​(List<Slide> slides)
        Called when stage of the given slides is modified.
        Parameters:
        slides - the slides
        Since:
        9.12.0
      • priorityModified

        void priorityModified​(List<Slide> slides)
        Called when priority of the given slides is modified.
        Parameters:
        slides - the slides
        Since:
        9.12.0
      • responsibilitiesModified

        void responsibilitiesModified​(List<Slide> slides)
        Called when responsibilities of the given slides are modified.
        Parameters:
        slides - the slides
        Since:
        9.12.0
      • labelsModified

        void labelsModified​(List<Slide> slides)
        Called when labels of the given slides are modified.
        Parameters:
        slides - the slides
        Since:
        9.12.0
      • dueDateModified

        void dueDateModified​(List<Slide> slides)
        Called when due date of the given slides is modified.
        Parameters:
        slides - the slides
        Since:
        9.12.0
      • viewpointAdded

        void viewpointAdded​(Slide slide,
                            Viewpoint viewpoint)
        Called when viewpoint is added to the given slide.
        Parameters:
        slide - the slide
        viewpoint - the added viewpoint
        Since:
        9.12.0
      • viewpointRemoved

        void viewpointRemoved​(Slide slide,
                              String viewpointId)
        Called when viewpoint is removed from the given slide.
        Parameters:
        slide - the slide
        viewpointId - id of the removed viewpoint
        Since:
        9.12.0
      • viewpointUpdated

        void viewpointUpdated​(Slide slide,
                              Viewpoint viewpoint)
        Called when the given viewpoint is updated.
        Parameters:
        slide - the slide
        viewpoint - the updated viewpoint
        Since:
        9.12.0
      • commentAdded

        void commentAdded​(Slide slide,
                          Viewpoint viewpoint,
                          Comment comment)
        Called when comment is added to the given slide.
        Parameters:
        slide - the slide
        viewpoint - the viewpoint the comment belongs to
        comment - the added comment
        Since:
        9.12.0
      • commentAdded

        void commentAdded​(Slide slide,
                          Comment comment)
        Called when comment is added to the given slide.
        Parameters:
        slide - the slide
        comment - the added comment
        Since:
        9.12.0
      • commentModified

        void commentModified​(Slide slide,
                             Viewpoint viewpoint,
                             Comment comment)
        This method is called, when comment of a slide is modified.
        Parameters:
        slide - the slide
        viewpoint - the viewpoint the comment belongs to
        comment - the comment
        Since:
        9.12.0
      • commentModified

        void commentModified​(Slide slide,
                             Comment comment)
        This method is called, when comment of a slide is modified.
        Parameters:
        slide - the slide
        comment - the comment
        Since:
        9.12.0
      • commentRemoved

        void commentRemoved​(Slide slide,
                            String commentId)
        This method is called, when comment of a slide is removed.
        Parameters:
        slide - the slide
        commentId - id of the removed comment
        Since:
        9.12.0
      • commentRemoved

        void commentRemoved​(Slide slide,
                            Viewpoint viewpoint,
                            String commentId)
        This method is called, when comment of a viewpoint is removed.
        Parameters:
        slide - the the parent slide of the viewpoint
        viewpoint - the viewpoint
        commentId - id of the removed comment
        Since:
        9.12.0
      • componentsAdded

        void componentsAdded​(Slide slide,
                             Collection<Component> addedComponents)
        This method is called when components are added to a slide.
        Parameters:
        slide - the slide
        addedComponents - the added components
        Since:
        9.12.0
      • componentsRemoved

        void componentsRemoved​(Slide slide,
                               Collection<Component> removedComponents)
        This method is called when components are removed from a slide.
        Parameters:
        slide - the slide
        removedComponents - the removed components
        Since:
        9.12.0
      • slideRemoved

        void slideRemoved​(Slide slide)
        This method is called when slide is removed.
        Parameters:
        slide - the slide that was removed