1 4 package com.tc.object.dna.api; 5 6 9 public class LogicalAction { 10 private final int method; 11 private final Object [] parameters; 12 13 public LogicalAction(int method, Object [] parameters) { 14 this.method = method; 15 this.parameters = parameters; 16 } 17 18 public int getMethod() { 19 return method; 20 } 21 22 public Object [] getParameters() { 23 return parameters; 24 } 25 26 } | Popular Tags |