Class FreestyleModuleConfig


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

    Class Documentation

    • Field Detail

      • __DNA__SDNA_INDEX

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

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

        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:

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

        Metadata

        • Field: 'next'
        • Signature: 'FreestyleModuleConfig*'
        • 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:

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

        Metadata

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

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

        Pointer Arithmetics

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

         FreestyleModuleConfig freestylemoduleconfig = ...;
         CPointer<Object> p = freestylemoduleconfig.__dna__addressof(FreestyleModuleConfig.__DNA__FIELD__script);
         CPointer<CPointer<Text>> p_script = p.cast(new Class[]{CPointer.class, Text.class});
         

        Metadata

        • Field: 'script'
        • Signature: 'Text*'
        • Actual Size (32bit/64bit): 4/8
      • __DNA__FIELD__is_displayed

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

        Pointer Arithmetics

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

         FreestyleModuleConfig freestylemoduleconfig = ...;
         CPointer<Object> p = freestylemoduleconfig.__dna__addressof(FreestyleModuleConfig.__DNA__FIELD__is_displayed);
         CPointer<Short> p_is_displayed = p.cast(new Class[]{Short.class});
         

        Metadata

        • Field: 'is_displayed'
        • Signature: 'short'
        • Actual Size (32bit/64bit): 2/2
      • __DNA__FIELD___pad

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

        Pointer Arithmetics

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

         FreestyleModuleConfig freestylemoduleconfig = ...;
         CPointer<Object> p = freestylemoduleconfig.__dna__addressof(FreestyleModuleConfig.__DNA__FIELD___pad);
         CPointer<CArrayFacade<Byte>> p__pad = p.cast(new Class[]{CArrayFacade.class, Byte.class});
         

        Metadata

        • Field: '_pad'
        • Signature: 'char[6]'
        • Actual Size (32bit/64bit): 6/6
    • Constructor Detail

      • FreestyleModuleConfig

        public FreestyleModuleConfig​(long __address,
                                     Block __block,
                                     BlockTable __blockTable)