Source code: alice/respect/OutTCActivity.java
1 /*
2 * OutTCSpawnert.java
3 *
4 * Copyright 2000-2001 deis.unibo.it
5 *
6 * This software is the proprietary information of deis.unibo.it
7 * Use is subject to license terms.
8 *
9 */
10 package alice.respect;
11
12 /**
13 * Base class defining Activity spawnable from ReSpecT code.
14 */
15 public abstract class OutTCActivity implements Runnable {
16
17 protected alice.logictuple.LogicTuple args;
18
19 public void setArguments(alice.logictuple.LogicTuple args_){
20 args=args_;
21 }
22 }