KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > fr > emn > info > eaop > aspect > Any


1 /* ----------------------------------------------------------------------------
2  * EAOP 1.0, 2002-12-19
3  * (c) 2002 Remi Douence, Mario Sudholt; OBASCO group; EMN/INRIA; France
4  * THIS SOFTWARE IS PROVIDED AS IS AND WITHOUT ANY WARRANTY
5   -------------------------------------------------------------------------- */

6
7 package fr.emn.info.eaop.aspect;
8
9 import java.util.*;
10 import java.lang.reflect.*;
11 import java.io.*;
12
13 /**
14  * This class implements binary nodes in the tree of aspects. The two
15  * aspects are composed in an arbitrary order
16  * (in the current implementation: sequentially, see
17  * definition of the (inherited) method <code>go()</code))
18  *
19  * @author RD
20  * @version 1.0
21  */

22 public class Any extends Seq {
23
24     public Any(AspectS a1, AspectS a2) {
25     this(a1, a2, null);
26     }
27     public Any(AspectS a1, AspectS a2, AspectS up) {
28     super(a1, a2, up);
29     }
30 }
31
32
Popular Tags