Package org.blender.dna
Class bNodeSocketValueString
- java.lang.Object
-
- org.cakelab.blender.nio.CFacade
-
- org.blender.dna.bNodeSocketValueString
-
public class bNodeSocketValueString extends CFacade
Generated facet for DNA struct type 'bNodeSocketValueString'.Class Documentation
-
-
Field Summary
Fields Modifier and Type Field Description static long[]
__DNA__FIELD___pad
Field descriptor (offset) for struct member '_pad'.static long[]
__DNA__FIELD__subtype
Field descriptor (offset) for struct member 'subtype'.static long[]
__DNA__FIELD__value
Field descriptor (offset) for struct member 'value'.static int
__DNA__SDNA_INDEX
This is the sdna index of the struct bNodeSocketValueString.-
Fields inherited from class org.cakelab.blender.nio.CFacade
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
-
-
Constructor Summary
Constructors Modifier Constructor Description bNodeSocketValueString(long __address, Block __block, BlockTable __blockTable)
protected
bNodeSocketValueString(bNodeSocketValueString that)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CPointer<bNodeSocketValueString>
__io__addressof()
Instantiates a pointer on this instance.CArrayFacade<java.lang.Byte>
get_pad()
Get method for struct member '_pad'.int
getSubtype()
Get method for struct member 'subtype'.CArrayFacade<java.lang.Byte>
getValue()
Get method for struct member 'value'.void
set_pad(CArrayFacade<java.lang.Byte> _pad)
Set method for struct member '_pad'.void
setSubtype(int subtype)
Set method for struct member 'subtype'.void
setValue(CArrayFacade<java.lang.Byte> value)
Set method for struct member 'value'.-
Methods inherited from class org.cakelab.blender.nio.CFacade
__io__addressof, __io__addressof, __io__equals, __io__generic__copy, __io__generic__copy, __io__instanceof, __io__native__copy, __io__newInstance, __io__same__encoding, __io__sizeof, __io__sizeof, __io__subclassof, equals, hashCode
-
-
-
-
Field Detail
-
__DNA__SDNA_INDEX
public static final int __DNA__SDNA_INDEX
This is the sdna index of the struct bNodeSocketValueString.It is required when allocating a new block to store data for bNodeSocketValueString.
- See Also:
StructDNA
,BlockTable
, Constant Field Values
-
__DNA__FIELD__subtype
public static final long[] __DNA__FIELD__subtype
Field descriptor (offset) for struct member 'subtype'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
bNodeSocketValueString bnodesocketvaluestring = ...; CPointer<Object> p = bnodesocketvaluestring.__dna__addressof(bNodeSocketValueString.__DNA__FIELD__subtype); CPointer<Integer> p_subtype = p.cast(new Class[]{Integer.class});
Metadata
- Field: 'subtype'
- Signature: 'int'
- Actual Size (32bit/64bit): 4/4
-
__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:
bNodeSocketValueString bnodesocketvaluestring = ...; CPointer<Object> p = bnodesocketvaluestring.__dna__addressof(bNodeSocketValueString.__DNA__FIELD___pad); CPointer<CArrayFacade<Byte>> p__pad = p.cast(new Class[]{CArrayFacade.class, Byte.class});
Metadata
- Field: '_pad'
- Signature: 'char[4]'
- Actual Size (32bit/64bit): 4/4
-
__DNA__FIELD__value
public static final long[] __DNA__FIELD__value
Field descriptor (offset) for struct member 'value'.Field Documentation
Blender Source Code
1024 = FILEMAX.
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
bNodeSocketValueString bnodesocketvaluestring = ...; CPointer<Object> p = bnodesocketvaluestring.__dna__addressof(bNodeSocketValueString.__DNA__FIELD__value); CPointer<CArrayFacade<Byte>> p_value = p.cast(new Class[]{CArrayFacade.class, Byte.class});
Metadata
- Field: 'value'
- Signature: 'char[1024]'
- Actual Size (32bit/64bit): 1024/1024
-
-
Constructor Detail
-
bNodeSocketValueString
public bNodeSocketValueString(long __address, Block __block, BlockTable __blockTable)
-
bNodeSocketValueString
protected bNodeSocketValueString(bNodeSocketValueString that)
-
-
Method Detail
-
getSubtype
public int getSubtype() throws java.io.IOException
Get method for struct member 'subtype'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__subtype
-
setSubtype
public void setSubtype(int subtype) throws java.io.IOException
Set method for struct member 'subtype'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__subtype
-
get_pad
public CArrayFacade<java.lang.Byte> get_pad() throws java.io.IOException
Get method for struct member '_pad'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD___pad
-
set_pad
public void set_pad(CArrayFacade<java.lang.Byte> _pad) throws java.io.IOException
Set method for struct member '_pad'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD___pad
-
getValue
public CArrayFacade<java.lang.Byte> getValue() throws java.io.IOException
Get method for struct member 'value'.Field Documentation
Blender Source Code
1024 = FILEMAX.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__value
-
setValue
public void setValue(CArrayFacade<java.lang.Byte> value) throws java.io.IOException
Set method for struct member 'value'.Field Documentation
Blender Source Code
1024 = FILEMAX.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__value
-
__io__addressof
public CPointer<bNodeSocketValueString> __io__addressof()
Instantiates a pointer on this instance.
-
-