Package org.blender.dna
Class UserDef_Runtime
- java.lang.Object
-
- org.cakelab.blender.nio.CFacade
-
- org.blender.dna.UserDef_Runtime
-
public class UserDef_Runtime extends CFacade
Generated facet for DNA struct type 'UserDef_Runtime'.Class Documentation
-
-
Field Summary
Fields Modifier and Type Field Description static long[]
__DNA__FIELD___pad0
Field descriptor (offset) for struct member '_pad0'.static long[]
__DNA__FIELD__is_dirty
Field descriptor (offset) for struct member 'is_dirty'.static int
__DNA__SDNA_INDEX
This is the sdna index of the struct UserDef_Runtime.-
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 UserDef_Runtime(long __address, Block __block, BlockTable __blockTable)
protected
UserDef_Runtime(UserDef_Runtime that)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CPointer<UserDef_Runtime>
__io__addressof()
Instantiates a pointer on this instance.CArrayFacade<java.lang.Byte>
get_pad0()
Get method for struct member '_pad0'.byte
getIs_dirty()
Get method for struct member 'is_dirty'.void
set_pad0(CArrayFacade<java.lang.Byte> _pad0)
Set method for struct member '_pad0'.void
setIs_dirty(byte is_dirty)
Set method for struct member 'is_dirty'.-
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 UserDef_Runtime.It is required when allocating a new block to store data for UserDef_Runtime.
- See Also:
StructDNA
,BlockTable
, Constant Field Values
-
__DNA__FIELD__is_dirty
public static final long[] __DNA__FIELD__is_dirty
Field descriptor (offset) for struct member 'is_dirty'.Field Documentation
Blender Source Code
Mark as changed so the preferences are saved on exit.
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
UserDef_Runtime userdef_runtime = ...; CPointer<Object> p = userdef_runtime.__dna__addressof(UserDef_Runtime.__DNA__FIELD__is_dirty); CPointer<Byte> p_is_dirty = p.cast(new Class[]{Byte.class});
Metadata
- Field: 'is_dirty'
- Signature: 'char'
- Actual Size (32bit/64bit): 1/1
-
__DNA__FIELD___pad0
public static final long[] __DNA__FIELD___pad0
Field descriptor (offset) for struct member '_pad0'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
UserDef_Runtime userdef_runtime = ...; CPointer<Object> p = userdef_runtime.__dna__addressof(UserDef_Runtime.__DNA__FIELD___pad0); CPointer<CArrayFacade<Byte>> p__pad0 = p.cast(new Class[]{CArrayFacade.class, Byte.class});
Metadata
- Field: '_pad0'
- Signature: 'char[7]'
- Actual Size (32bit/64bit): 7/7
-
-
Constructor Detail
-
UserDef_Runtime
public UserDef_Runtime(long __address, Block __block, BlockTable __blockTable)
-
UserDef_Runtime
protected UserDef_Runtime(UserDef_Runtime that)
-
-
Method Detail
-
getIs_dirty
public byte getIs_dirty() throws java.io.IOException
Get method for struct member 'is_dirty'.Field Documentation
Blender Source Code
Mark as changed so the preferences are saved on exit.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__is_dirty
-
setIs_dirty
public void setIs_dirty(byte is_dirty) throws java.io.IOException
Set method for struct member 'is_dirty'.Field Documentation
Blender Source Code
Mark as changed so the preferences are saved on exit.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__is_dirty
-
get_pad0
public CArrayFacade<java.lang.Byte> get_pad0() throws java.io.IOException
Get method for struct member '_pad0'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD___pad0
-
set_pad0
public void set_pad0(CArrayFacade<java.lang.Byte> _pad0) throws java.io.IOException
Set method for struct member '_pad0'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD___pad0
-
__io__addressof
public CPointer<UserDef_Runtime> __io__addressof()
Instantiates a pointer on this instance.
-
-