Package org.python.expose.generate

Examples of org.python.expose.generate.ExposedTypeVisitor


import org.python.expose.generate.ExposedTypeVisitor;

public class ExposedTypeVisitorTest extends TestCase {

    public void setUp() {
        etv = new ExposedTypeVisitor(Type.getType("Lsimpletype;"), null) {

            @Override
            public void handleResult(String name, Type base, boolean isBaseType, String doc) {
                result = name;
                baseResult = base;
View Full Code Here

TOP

Related Classes of org.python.expose.generate.ExposedTypeVisitor

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.