Package org.apache.geronimo.corba.codeset

Examples of org.apache.geronimo.corba.codeset.CharConverter


    public void write_boolean(boolean value) {
        write_octet(value ? (byte) 1 : (byte) 0);
    }

    public void write_char(char value) {
        CharConverter char_converter = __get_char_converter();
        char_converter.write_char(this, value);
    }
View Full Code Here


            throw ex;
        }
    }

    public void write_wchar(char value) {
        CharConverter char_converter = __get_wchar_converter();
        char_converter.write_char(this, value);
    }
View Full Code Here

    public final boolean read_boolean() {
        return read_octet() == 0 ? false : true;
    }

    public final char read_char() {
        CharConverter converter = __get_char_converter();
        return converter.read_char(this);
    }
View Full Code Here

        return char_converter;
    }

    public final char read_wchar() {
        CharConverter converter = __get_wchar_converter();
        return converter.read_char(this);
    }
View Full Code Here

            int off = read_long();
            int pos = tag_position + off;
            return (String) __lookup_value(pos);
        } else {
            int pos = tag_position;
            CharConverter converter = __get_char_converter();
            String value = converter.read_string(this, tag);
            __register_value(pos, value);
            return value;
        }
    }
View Full Code Here

            int off = read_long();
            int pos = tag_position + off;
            return (String) __lookup_value(pos);
        } else {
            int pos = tag_position;
            CharConverter converter = __get_wchar_converter();
            String value = converter.read_string(this, tag);
            __register_value(pos, value);
            return value;
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.geronimo.corba.codeset.CharConverter

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.