KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jac > samples > solitaire > distribution > SolitaireDistributionAC


1 /*
2   JAC-Core version 0.5.1
3
4   Renaud Pawlak, pawlak@cnam.fr, CEDRIC Laboratory, Paris, France.
5   Lionel Seinturier, Lionel.Seinturier@lip6.fr, LIP6, Paris, France.
6
7   JAC-Core is free software. You can redistribute it and/or modify it
8   under the terms of the GNU Library General Public License as
9   published by the Free Software Foundation.
10   
11   JAC-Core is distributed in the hope that it will be useful, but
12   WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14
15   This work uses the Javassist system - Copyright (c) 1999-2000
16   Shigeru Chiba, University of Tsukuba, Japan. All Rights Reserved. */

17
18 package org.objectweb.jac.samples.solitaire.distribution;
19
20 import org.objectweb.jac.core.*;
21 import org.objectweb.jac.wrappers.*;
22 import org.objectweb.jac.aspects.naming.*;
23 import org.objectweb.jac.aspects.distribution.*;
24
25 /**
26  * This aspect component handles the distrution aspect for the agenda
27  * example. */

28
29 public class SolitaireDistributionAC extends DistributionAC {
30
31    public SolitaireDistributionAC() {
32
33       /* addDistributionRule(
34          DistributionRule.makeReplicatedStrong(
35             "mainVector[0-9]*", ".*",
36             new String[] { "addAll" },
37             DistributionRule.PT_PUSH ) );
38       */

39    }
40    
41 }
42
43
44
45
46
47
48
49
50
51
52
53
54
Popular Tags