Interface AfterSavingListener

All Superinterfaces:
EventListener
All Known Implementing Classes:
AfterSavingAdapter

public interface AfterSavingListener extends EventListener
The listener object created from that class is then registered with a component using the component's addAfterSavingListener method. A save event is generated when an object that provides support of notification about saving files, has save a file. The relevant method in the listener object is then invoked, and the SaveEvent is passed to it.
Author:
Pablo Piqueras Bartolomé (pablo.piqueras@iver.es)
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Invoked after saving a file.
  • Method Details

    • afterSaving

      void afterSaving(SaveEvent e)
      Invoked after saving a file. See the class description of SaveEvent for a definition of has saved an event.