01: /**************************************************************************************
02: * Copyright (c) Jonas BonŽr, Alexandre Vasseur. All rights reserved. *
03: * http://aspectwerkz.codehaus.org *
04: * ---------------------------------------------------------------------------------- *
05: * The software in this package is published under the terms of the LGPL license *
06: * a copy of which has been included with this distribution in the license.txt file. *
07: **************************************************************************************/package org.codehaus.aspectwerkz.reflect;
08:
09: import java.io.Serializable;
10: import java.util.Collection;
11:
12: /**
13: * A list of all the possible target classes.
14: *
15: * @author <a href="mailto:jboner@codehaus.org">Jonas BonŽr </a>
16: */
17: public class ClassList implements Serializable {
18: /**
19: * List with all the possible target classes.
20: */
21: private Collection m_classes;
22:
23: /**
24: * Returns the classes.
25: *
26: * @return the classes
27: */
28: public Collection getClasses() {
29: return m_classes;
30: }
31:
32: /**
33: * Appends a new list of classes to the old one.
34: *
35: * @param classes the classes to append
36: */
37: public void setClasses(final Collection classes) {
38: m_classes = classes;
39: }
40: }
|