All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.objectweb.fractal.api.ComponentFcItf Maven / Gradle / Ivy

There is a newer version: 2.7
Show newest version
/*
 * Generated by: org.objectweb.fractal.juliac.proxy.InterfaceImplementationClassGenerator
 * on: Fri Jan 15 16:55:10 CET 2010
 */

package org.objectweb.fractal.api;


public class ComponentFcItf
extends org.objectweb.fractal.julia.BasicComponentInterface
implements org.objectweb.fractal.api.Component {

  private org.objectweb.fractal.api.Component impl;
  public ComponentFcItf()  {
  }

  public ComponentFcItf(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.Component)obj;
  }

  public java.lang.Object getFcInterface(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.lang.Object ret = impl.getFcInterface(arg0);
    return ret;
  }

  public org.objectweb.fractal.api.Type getFcType()  {
    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.objectweb.fractal.api.Type ret = impl.getFcType();
    return ret;
  }

  public java.lang.Object[] getFcInterfaces()  {
    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.getFcInterfaces();
    return ret;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy