Skip navigation links
JNA API 3.5.2-SNAPSHOT
com.sun.jna.platform.win32

Class OaIdl.VARDESC

    • Constructor Detail

      • VARDESC

        public VARDESC()
      • VARDESC

        public VARDESC(OaIdl.MEMBERID memid,
                       WString lpstrSchema,
                       OaIdl.VARDESC._Union union,
                       OaIdl.ELEMDESC elemdescVar,
                       short wVarFlags,
                       OaIdl.VARKIND varkind)
        Parameters:
        memid - C type : MEMBERID
        lpstrSchema - C type : LPOLESTR
        union - [switch_is][switch_type]
        C type : DUMMYUNIONNAMEUnion
        elemdescVar - C type : ELEMDESC
        wVarFlags - C type : short
        varkind - C type : VARKIND
    • Method Detail

      • getFieldOrder

        protected java.util.List getFieldOrder()
        Description copied from class: Structure
        Return this Structure's field names in their proper order. For example,
        
         protected List getFieldOrder() {
             return Arrays.asList(new String[] { ... });
         }
         
        IMPORTANT When deriving from an existing Structure subclass, ensure that you augment the list provided by the superclass, e.g.
        
         protected List getFieldOrder() {
             List fields = new ArrayList(super.getFieldOrder());
             fields.addAll(Arrays.asList(new String[] { ... }));
             return fields;
         }
         
        Field order must be explicitly indicated, since the field order as returned by Class.getFields() is not guaranteed to be predictable.
        Specified by:
        getFieldOrder in class Structure
JNA API 3.5.2-SNAPSHOT

Copyright © 2007-2019 Timothy Wall. All Rights Reserved.