
org.objectweb.fractal.api.control.NameControllerFcItf Maven / Gradle / Ivy
/*
* Generated by: org.objectweb.fractal.juliac.proxy.InterfaceImplementationClassGenerator
* on: Wed Sep 21 08:04:21 GMT+01:00 2016
*/
package org.objectweb.fractal.api.control;
public class NameControllerFcItf
extends org.objectweb.fractal.julia.BasicComponentInterface
implements org.objectweb.fractal.api.control.NameController {
private org.objectweb.fractal.api.control.NameController impl;
public NameControllerFcItf() {
}
public NameControllerFcItf(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.objectweb.fractal.api.control.NameController)obj;
}
public java.lang.String getFcName() {
if ( impl == null )
{
throw new java.lang.NullPointerException("Trying to invoke a method on a client or server interface whose complementary interface is not bound.");
}
java.lang.String ret = impl.getFcName();
return ret;
}
public void setFcName(final java.lang.String arg0) {
if ( impl == null )
{
throw new java.lang.NullPointerException("Trying to invoke a method on a client or server interface whose complementary interface is not bound.");
}
impl.setFcName(arg0);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy