KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > object > dna > api > LogicalAction


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.object.dna.api;
5
6 /**
7  * Dec 6, 2004: A logical action :-)
8  */

9 public class LogicalAction {
10   private final int method;
11   private final Object JavaDoc[] parameters;
12
13   public LogicalAction(int method, Object JavaDoc[] parameters) {
14     this.method = method;
15     this.parameters = parameters;
16   }
17
18   public int getMethod() {
19     return method;
20   }
21
22   public Object JavaDoc[] getParameters() {
23     return parameters;
24   }
25
26 }
Popular Tags