Package com4j.tlbimp.def

Examples of com4j.tlbimp.def.InvokeKind


    protected String getSubPackageName() {
        return "events";
    }

    protected void generateMethod(IMethod m, IndentingWriter o) throws BindingException {
        InvokeKind kind = m.getKind();
        if(kind!=InvokeKind.FUNC || isBogusDispatchMethod(m))
            return;

        MethodBinder mb = new MethodBinderImpl(g,m);
        mb.declare(o);
View Full Code Here


        // TODO: what was the difference between propput and propputref?
        Set<String> putMethods = new HashSet<String>();

        for( int j=0; j<t.countMethods(); j++ ) {
            IMethod m = t.getMethod(j);
            InvokeKind kind = m.getKind();
            if(kind== InvokeKind.PROPERTYPUT || kind== InvokeKind.PROPERTYPUTREF) {
                if(!putMethods.add(m.getName()))
                    continue;   // already added
            }
            try {
View Full Code Here

TOP

Related Classes of com4j.tlbimp.def.InvokeKind

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.