Package com.sun.star.uno

Examples of com.sun.star.uno.Ascii


        nFloat = (float)0.111;
        nDouble = 111.111;
        cChar = 'a';
        bBoolean = true;
        aString = "hallo";
        aAscii = new Ascii( 'a' );
        aAsciiString = new AsciiString( "asciistring" );
        eEnum = TCKind.tk_ulonglong;
    }
View Full Code Here


        aE.nFloat = (float)0.111;
        aE.nDouble = 111.111;
        aE.cChar = 'a';
        aE.bBoolean = true;
        aE.aString = "hallo";
        aE.aAscii = new Ascii( 'a' );
        aE.aAsciiString = new AsciiString( "asciistring" );
       
        aM = new Marshal( false, null );
        aM.write_exception( aE );
        aUM = new Unmarshal( aM.getByteArray(), aM.getSize(), false, null );
View Full Code Here

TOP

Related Classes of com.sun.star.uno.Ascii

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.