01: /***
02: * jwma Java WebMail
03: * Copyright (c) 2000-2003 jwma team
04: *
05: * jwma is free software; you can distribute and use this source
06: * under the terms of the BSD-style license received along with
07: * the distribution.
08: ***/package dtw.webmail.util;
09:
10: import java.util.List;
11:
12: /**
13: * Interface modeling an <tt>Associator</tt>.
14: *
15: * @author Dieter Wimberger
16: * @version 0.9.7 07/02/2003
17: */
18: public interface Associator {
19:
20: /**
21: * Returns the associated instances.
22: *
23: * @return the associated instances as <tt>List</tt>.
24: */
25: public List getRemovedAssociations();
26:
27: }//interface Identifiable
|