org.ow2.frascati.tinfi.control.property.SCAPropertyControllerFcItf 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.property;
public class SCAPropertyControllerFcItf
extends org.objectweb.fractal.julia.BasicComponentInterface
implements org.ow2.frascati.tinfi.control.property.SCAPropertyController {
private org.ow2.frascati.tinfi.control.property.SCAPropertyController impl;
public SCAPropertyControllerFcItf() {
}
public SCAPropertyControllerFcItf(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.property.SCAPropertyController)obj;
}
public java.lang.Object getValue(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.Object ret = impl.getValue(arg0);
return ret;
}
public java.lang.Class> getType(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.getType(arg0);
return ret;
}
public void setValue(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.setValue(arg0,arg1);
}
public void setType(final java.lang.String arg0,final java.lang.Class> 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.setType(arg0,arg1);
}
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 boolean containsDeclaredPropertyName(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.containsDeclaredPropertyName(arg0);
return ret;
}
public java.lang.String[] getDeclaredPropertyNames() {
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.getDeclaredPropertyNames();
return ret;
}
public java.lang.Class> getDeclaredPropertyType(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.getDeclaredPropertyType(arg0);
return ret;
}
public void setPromoter(final java.lang.String arg0,final org.ow2.frascati.tinfi.control.property.SCAPropertyController arg1) throws org.ow2.frascati.tinfi.control.property.IllegalPromoterException {
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.setPromoter(arg0,arg1);
}
public org.ow2.frascati.tinfi.control.property.SCAPropertyController getPromoter(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.");
org.ow2.frascati.tinfi.control.property.SCAPropertyController ret = impl.getPromoter(arg0);
return ret;
}
}