Package org.apache.axis.types

Examples of org.apache.axis.types.NonNegativeInteger


    /**
     * Run a successful test.  value should be valid.
     */
    private void runPassTest(String value) throws Exception {
        NonNegativeInteger oNonNegativeInteger = null;
        try {
            oNonNegativeInteger = new NonNegativeInteger(value);
        }
        catch (Exception e) { // catch the validation exception
        }
        assertEquals("unsigned int not equal" +
                value, oNonNegativeInteger.toString(), value);
    }
View Full Code Here


                throw e;
            }
        }

        // Test xsd:nonNegativeInteger
        NonNegativeInteger nniInput = new NonNegativeInteger("12345678901234567890");
        try {
            output = binding.echoNonNegativeInteger(nniInput);
            verify("echoNonNegativeInteger", nniInput, output);
        } catch (Exception e) {
            if (!testMode) {
View Full Code Here

TOP

Related Classes of org.apache.axis.types.NonNegativeInteger

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.