Package be.selckin.ws.util.java2php.php

Examples of be.selckin.ws.util.java2php.php.PhpEnum


                    throw new RuntimeException("unsupported", usc);
                }
            } else if (type instanceof XmlSchemaSimpleType) {
                XmlSchemaSimpleType simpleType = (XmlSchemaSimpleType) type;
                if (XmlSchemaUtils.isEumeration(simpleType)) {
                    phpTypes.add(new PhpEnum(
                            simpleType.getQName(),
                            nameManager.getPhpNamespace(simpleType.getQName()),
                            nameManager.getPhpClassName(simpleType.getQName()),
                            XmlSchemaUtils.enumeratorValues(simpleType)
                    ));
View Full Code Here

TOP

Related Classes of be.selckin.ws.util.java2php.php.PhpEnum

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.