Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Generated by: org.objectweb.fractal.juliac.proxy.InterfaceImplementationClassGenerator
* on: Fri Jan 15 16:55:10 CET 2010
*/
package org.ow2.frascati.tinfi.control.intent;
public class SCAIntentControllerFcItf
extends org.objectweb.fractal.julia.BasicComponentInterface
implements org.ow2.frascati.tinfi.control.intent.SCAIntentController {
private org.ow2.frascati.tinfi.control.intent.SCAIntentController impl;
public SCAIntentControllerFcItf() {
}
public SCAIntentControllerFcItf(org.objectweb.fractal.api.Component component,String s,org.objectweb.fractal.api.Type type,boolean flag,Object obj) {
super(component,s,type,flag,obj);
}
public Object getFcItfImpl() {
return impl;
}
public void setFcItfImpl(Object obj) {
impl = (org.ow2.frascati.tinfi.control.intent.SCAIntentController)obj;
}
public void addFcIntentHandler(final org.ow2.frascati.tinfi.control.intent.IntentHandler arg0,final java.lang.Class arg1,final java.lang.String arg2) throws org.objectweb.fractal.api.control.IllegalLifeCycleException {
if( impl == null )
throw new NullPointerException("Trying to invoke a method on a client interface, or on a server interface whose complementary interface is not bound.");
impl.addFcIntentHandler(arg0,arg1,arg2);
}
public void addFcIntentHandler(final org.ow2.frascati.tinfi.control.intent.IntentHandler arg0) throws org.objectweb.fractal.api.control.IllegalLifeCycleException {
if( impl == null )
throw new NullPointerException("Trying to invoke a method on a client interface, or on a server interface whose complementary interface is not bound.");
impl.addFcIntentHandler(arg0);
}
public void addFcIntentHandler(final org.ow2.frascati.tinfi.control.intent.IntentHandler arg0,final org.ow2.frascati.tinfi.control.intent.InterfaceFilter arg1) throws org.objectweb.fractal.api.control.IllegalLifeCycleException {
if( impl == null )
throw new NullPointerException("Trying to invoke a method on a client interface, or on a server interface whose complementary interface is not bound.");
impl.addFcIntentHandler(arg0,arg1);
}
public void addFcIntentHandler(final org.ow2.frascati.tinfi.control.intent.IntentHandler arg0,final org.ow2.frascati.tinfi.control.intent.InterfaceMethodFilter arg1) throws org.objectweb.fractal.api.control.IllegalLifeCycleException {
if( impl == null )
throw new NullPointerException("Trying to invoke a method on a client interface, or on a server interface whose complementary interface is not bound.");
impl.addFcIntentHandler(arg0,arg1);
}
public void addFcIntentHandler(final org.ow2.frascati.tinfi.control.intent.IntentHandler arg0,final java.lang.String arg1) throws org.objectweb.fractal.api.NoSuchInterfaceException {
if( impl == null )
throw new NullPointerException("Trying to invoke a method on a client interface, or on a server interface whose complementary interface is not bound.");
impl.addFcIntentHandler(arg0,arg1);
}
public void addFcIntentHandler(final org.ow2.frascati.tinfi.control.intent.IntentHandler arg0,final java.lang.String arg1,final java.lang.reflect.Method arg2) throws org.objectweb.fractal.api.NoSuchInterfaceException,java.lang.NoSuchMethodException {
if( impl == null )
throw new NullPointerException("Trying to invoke a method on a client interface, or on a server interface whose complementary interface is not bound.");
impl.addFcIntentHandler(arg0,arg1,arg2);
}
public java.util.List listFcIntentHandler(final java.lang.String arg0) throws org.objectweb.fractal.api.NoSuchInterfaceException {
if( impl == null )
throw new NullPointerException("Trying to invoke a method on a client interface, or on a server interface whose complementary interface is not bound.");
java.util.List ret = impl.listFcIntentHandler(arg0);
return ret;
}
public java.util.List listFcIntentHandler(final java.lang.String arg0,final java.lang.reflect.Method arg1) throws org.objectweb.fractal.api.NoSuchInterfaceException,java.lang.NoSuchMethodException {
if( impl == null )
throw new NullPointerException("Trying to invoke a method on a client interface, or on a server interface whose complementary interface is not bound.");
java.util.List ret = impl.listFcIntentHandler(arg0,arg1);
return ret;
}
public void removeFcIntentHandler(final org.ow2.frascati.tinfi.control.intent.IntentHandler arg0) {
if( impl == null )
throw new NullPointerException("Trying to invoke a method on a client interface, or on a server interface whose complementary interface is not bound.");
impl.removeFcIntentHandler(arg0);
}
public void removeFcIntentHandler(final org.ow2.frascati.tinfi.control.intent.IntentHandler arg0,final java.lang.String arg1) throws org.objectweb.fractal.api.NoSuchInterfaceException {
if( impl == null )
throw new NullPointerException("Trying to invoke a method on a client interface, or on a server interface whose complementary interface is not bound.");
impl.removeFcIntentHandler(arg0,arg1);
}
public void removeFcIntentHandler(final org.ow2.frascati.tinfi.control.intent.IntentHandler arg0,final java.lang.String arg1,final java.lang.reflect.Method arg2) throws org.objectweb.fractal.api.NoSuchInterfaceException,java.lang.NoSuchMethodException {
if( impl == null )
throw new NullPointerException("Trying to invoke a method on a client interface, or on a server interface whose complementary interface is not bound.");
impl.removeFcIntentHandler(arg0,arg1,arg2);
}
}