
org.objectweb.fractal.bf.connectors.ServiceFcItf Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fractal-bf-testing-fixtures-juliac Show documentation
Show all versions of fractal-bf-testing-fixtures-juliac Show documentation
Integration tests fixtures with Juliac
The newest version!
/*
* Generated by: org.objectweb.fractal.juliac.proxy.InterfaceImplementationClassGenerator
* on: Wed Mar 20 11:44:56 CET 2013
*/
package org.objectweb.fractal.bf.connectors;
public class ServiceFcItf
extends org.objectweb.fractal.julia.BasicComponentInterface
implements org.objectweb.fractal.bf.connectors.Service {
private org.objectweb.fractal.bf.connectors.Service impl;
public ServiceFcItf() {
}
public ServiceFcItf(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.bf.connectors.Service)obj;
}
public void badMethod() throws org.objectweb.fractal.bf.connectors.HelloWorldException {
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.badMethod();
}
public byte[] elaborateBytes(final java.util.Properties arg0,final byte[] arg1) {
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.");
}
byte[] ret = impl.elaborateBytes(arg0,arg1);
return ret;
}
public java.lang.String printAndAnswer() {
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.printAndAnswer();
return ret;
}
public org.objectweb.fractal.bf.connectors.Pojo getPojo() {
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.");
}
org.objectweb.fractal.bf.connectors.Pojo ret = impl.getPojo();
return ret;
}
public javax.xml.datatype.XMLGregorianCalendar getCurrentDate() {
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.");
}
javax.xml.datatype.XMLGregorianCalendar ret = impl.getCurrentDate();
return ret;
}
public org.objectweb.fractal.bf.connectors.Pojo child(final org.objectweb.fractal.bf.connectors.Pojo 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.");
}
org.objectweb.fractal.bf.connectors.Pojo ret = impl.child(arg0);
return ret;
}
public void print() {
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.print();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy