Package mark

Examples of mark.AddData


        return a + b;
    }

    public AddData addData( AddData a, AddData b )
    {
        return new AddData( a.getA() + b.getA() );
    }
View Full Code Here


        int r = 0;
        for( int i=0; i<a.length; i++ )
        {
            r = r + a[i].getA();
        }
        return new AddData( r );
    }
View Full Code Here

        return a + b;
    }

    public AddData addData( AddData a, AddData b )
    {
        return new AddData( a.getA() + b.getA() );
    }
View Full Code Here

        int r = 0;
        for( int i=0; i<a.length; i++ )
        {
            r = r + a[i].getA();
        }
        return new AddData( r );
    }
View Full Code Here

        }
    }

    public void addData( gcc.rmi.iiop.ObjectInputStream input, gcc.rmi.iiop.ObjectOutputStream output )
    {
        AddData rc;

        try
        {
            AddData p0 = (AddData) input.readObject( vt$0 );
            AddData p1 = (AddData) input.readObject( vt$0 );
            rc = _servant.addData( p0, p1 );
            output.writeObject( vt$0, rc );
        }
        catch( java.lang.Exception ex )
        {
View Full Code Here

        }
    }

    public void addDatas( gcc.rmi.iiop.ObjectInputStream input, gcc.rmi.iiop.ObjectOutputStream output )
    {
        AddData rc;

        try
        {
            AddData[] p0 = (AddData[]) input.readObject( vt$1 );
            rc = _servant.addDatas( p0 );
View Full Code Here

TOP

Related Classes of mark.AddData

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.