source: josm/trunk/src/org/openstreetmap/josm/tools/Destroyable.java@ 3965

Last change on this file since 3965 was 1169, checked in by stoecker, 15 years ago

removed usage of tab stops

  • Property svn:eol-style set to native
File size: 490 bytes
Line 
1// License: GPL. Copyright 2007 by Immanuel Scholz and others
2package org.openstreetmap.josm.tools;
3
4/**
5 * Some objects like layers (when they are removed) or the whole map frame (when the last layer has
6 * been removed) have an definite set of actions to execute. This is the "destructor" interface called
7 * on those objects.
8 *
9 * @author immanuel.scholz
10 */
11public interface Destroyable {
12
13 /**
14 * Called when the object has been destroyed.
15 */
16 public void destroy();
17}
Note: See TracBrowser for help on using the repository browser.