KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > bindings > ServerDataBindingCallback


1 package org.objectweb.celtix.bindings;
2
3 import java.lang.reflect.InvocationTargetException JavaDoc;
4
5 import org.objectweb.celtix.context.ObjectMessageContext;
6
7 public interface ServerDataBindingCallback extends DataBindingCallback {
8
9     
10     
11     void invoke(ObjectMessageContext octx) throws InvocationTargetException JavaDoc;
12 }
13
Popular Tags