Class MetaStack


  • public class MetaStack
    extends CFacade
    Generated facet for DNA struct type 'MetaStack'.

    Class Documentation

    • Field Detail

      • __DNA__SDNA_INDEX

        public static final int __DNA__SDNA_INDEX
        This is the sdna index of the struct MetaStack.

        It is required when allocating a new block to store data for MetaStack.

        See Also:
        StructDNA, BlockTable, Constant Field Values
      • __DNA__FIELD__next

        public static final long[] __DNA__FIELD__next
        Field descriptor (offset) for struct member 'next'.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         MetaStack metastack = ...;
         CPointer<Object> p = metastack.__dna__addressof(MetaStack.__DNA__FIELD__next);
         CPointer<CPointer<MetaStack>> p_next = p.cast(new Class[]{CPointer.class, MetaStack.class});
         

        Metadata

        • Field: 'next'
        • Signature: 'MetaStack*'
        • Actual Size (32bit/64bit): 4/8
      • __DNA__FIELD__prev

        public static final long[] __DNA__FIELD__prev
        Field descriptor (offset) for struct member 'prev'.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         MetaStack metastack = ...;
         CPointer<Object> p = metastack.__dna__addressof(MetaStack.__DNA__FIELD__prev);
         CPointer<CPointer<MetaStack>> p_prev = p.cast(new Class[]{CPointer.class, MetaStack.class});
         

        Metadata

        • Field: 'prev'
        • Signature: 'MetaStack*'
        • Actual Size (32bit/64bit): 4/8
      • __DNA__FIELD__oldbasep

        public static final long[] __DNA__FIELD__oldbasep
        Field descriptor (offset) for struct member 'oldbasep'.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         MetaStack metastack = ...;
         CPointer<Object> p = metastack.__dna__addressof(MetaStack.__DNA__FIELD__oldbasep);
         CPointer<CPointer<ListBase>> p_oldbasep = p.cast(new Class[]{CPointer.class, ListBase.class});
         

        Metadata

        • Field: 'oldbasep'
        • Signature: 'ListBase*'
        • Actual Size (32bit/64bit): 4/8
      • __DNA__FIELD__parseq

        public static final long[] __DNA__FIELD__parseq
        Field descriptor (offset) for struct member 'parseq'.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         MetaStack metastack = ...;
         CPointer<Object> p = metastack.__dna__addressof(MetaStack.__DNA__FIELD__parseq);
         CPointer<CPointer<Sequence>> p_parseq = p.cast(new Class[]{CPointer.class, Sequence.class});
         

        Metadata

        • Field: 'parseq'
        • Signature: 'Sequence*'
        • Actual Size (32bit/64bit): 4/8
      • __DNA__FIELD__disp_range

        public static final long[] __DNA__FIELD__disp_range
        Field descriptor (offset) for struct member 'disp_range'.

        Field Documentation

        Blender Source Code

        the startdisp/enddisp when entering the meta

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         MetaStack metastack = ...;
         CPointer<Object> p = metastack.__dna__addressof(MetaStack.__DNA__FIELD__disp_range);
         CPointer<CArrayFacade<Integer>> p_disp_range = p.cast(new Class[]{CArrayFacade.class, Integer.class});
         

        Metadata

        • Field: 'disp_range'
        • Signature: 'int[2]'
        • Actual Size (32bit/64bit): 8/8
    • Constructor Detail

      • MetaStack

        public MetaStack​(long __address,
                         Block __block,
                         BlockTable __blockTable)
      • MetaStack

        protected MetaStack​(MetaStack that)
    • Method Detail

      • setNext

        public void setNext​(CPointer<MetaStack> next)
                     throws java.io.IOException
        Set method for struct member 'next'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__next
      • setPrev

        public void setPrev​(CPointer<MetaStack> prev)
                     throws java.io.IOException
        Set method for struct member 'prev'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__prev
      • setOldbasep

        public void setOldbasep​(CPointer<ListBase> oldbasep)
                         throws java.io.IOException
        Set method for struct member 'oldbasep'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__oldbasep
      • setParseq

        public void setParseq​(CPointer<Sequence> parseq)
                       throws java.io.IOException
        Set method for struct member 'parseq'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__parseq
      • getDisp_range

        public CArrayFacade<java.lang.Integer> getDisp_range()
                                                      throws java.io.IOException
        Get method for struct member 'disp_range'.

        Field Documentation

        Blender Source Code

        the startdisp/enddisp when entering the meta

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__disp_range
      • setDisp_range

        public void setDisp_range​(CArrayFacade<java.lang.Integer> disp_range)
                           throws java.io.IOException
        Set method for struct member 'disp_range'.

        Field Documentation

        Blender Source Code

        the startdisp/enddisp when entering the meta

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__disp_range
      • __io__addressof

        public CPointer<MetaStack> __io__addressof()
        Instantiates a pointer on this instance.