7
/// Implement this interface if your Addin needs to do things when Tomboy
8
/// starts up and shuts down.
10
public abstract class ApplicationAddin : AbstractAddin
13
/// Called when Tomboy has started up and is nearly 100% initialized.
15
public abstract void Initialize ();
18
/// Called just before Tomboy shuts down for good.
20
public abstract void Shutdown ();
23
/// Return true if the addin is initialized
25
public abstract bool Initialized