KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > remoting > callback > pull > memory > TestCallback


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package org.jboss.test.remoting.callback.pull.memory;
8
9 import java.io.Serializable JavaDoc;
10
11 /**
12  * @author <a HREF="mailto:tom@jboss.org">Tom Elrod</a>
13  */

14 public class TestCallback implements Serializable JavaDoc
15 {
16    byte[] bytes = null;
17    int counter = 0;
18
19    public TestCallback(byte[] bytes, int counter)
20    {
21       this.bytes = bytes;
22       this.counter = counter;
23    }
24 }
Popular Tags