org.ow2.frascati.tinfi.control.content.SCAContentControllerFcItf Maven / Gradle / Ivy
/*
* Generated by: org.objectweb.fractal.juliac.proxy.InterfaceImplementationClassGenerator
* on: Fri Jan 15 16:55:10 CET 2010
*/
package org.ow2.frascati.tinfi.control.content;
public class SCAContentControllerFcItf
extends org.objectweb.fractal.julia.BasicComponentInterface
implements org.ow2.frascati.tinfi.control.content.SCAContentController {
private org.ow2.frascati.tinfi.control.content.SCAContentController impl;
public SCAContentControllerFcItf() {
}
public SCAContentControllerFcItf(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.content.SCAContentController)obj;
}
public java.lang.Class> getPropertyType(final java.lang.String 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.");
java.lang.Class> ret = impl.getPropertyType(arg0);
return ret;
}
public void setFcContentClass(final java.lang.Class> arg0) throws org.objectweb.fractal.api.control.IllegalLifeCycleException,org.ow2.frascati.tinfi.control.content.ContentInstantiationException {
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.setFcContentClass(arg0);
}
public java.lang.Object getFcContent() throws org.ow2.frascati.tinfi.control.content.ContentInstantiationException {
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.lang.Object ret = impl.getFcContent();
return ret;
}
public void releaseFcContent(final java.lang.Object arg0,final boolean arg1) {
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.releaseFcContent(arg0,arg1);
}
public void pushRequestContext(final org.osoa.sca.RequestContext 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.pushRequestContext(arg0);
}
public void popRequestContext() {
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.popRequestContext();
}
public org.osoa.sca.RequestContext peekRequestContext() {
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.");
org.osoa.sca.RequestContext ret = impl.peekRequestContext();
return ret;
}
public void eagerInit() throws org.ow2.frascati.tinfi.control.content.ContentInstantiationException {
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.eagerInit();
}
public void eagerDestroy() throws org.ow2.frascati.tinfi.control.content.ContentInstantiationException {
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.eagerDestroy();
}
public boolean containsPropertyName(final java.lang.String 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.");
boolean ret = impl.containsPropertyName(arg0);
return ret;
}
public java.lang.String[] getPropertyNames() {
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.lang.String[] ret = impl.getPropertyNames();
return ret;
}
public void setPropertyValue(final java.lang.String arg0,final java.lang.Object arg1) {
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.setPropertyValue(arg0,arg1);
}
}