Package org.blender.dna
Class SpreadsheetContextModifier
- java.lang.Object
-
- org.cakelab.blender.nio.CFacade
-
- org.blender.dna.SpreadsheetContextModifier
-
public class SpreadsheetContextModifier extends CFacade
Generated facet for DNA struct type 'SpreadsheetContextModifier'.Class Documentation
-
-
Field Summary
Fields Modifier and Type Field Description static long[]
__DNA__FIELD__base
Field descriptor (offset) for struct member 'base'.static long[]
__DNA__FIELD__modifier_name
Field descriptor (offset) for struct member 'modifier_name'.static int
__DNA__SDNA_INDEX
This is the sdna index of the struct SpreadsheetContextModifier.-
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 SpreadsheetContextModifier(long __address, Block __block, BlockTable __blockTable)
protected
SpreadsheetContextModifier(SpreadsheetContextModifier that)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CPointer<SpreadsheetContextModifier>
__io__addressof()
Instantiates a pointer on this instance.SpreadsheetContext
getBase()
Get method for struct member 'base'.CPointer<java.lang.Byte>
getModifier_name()
Get method for struct member 'modifier_name'.void
setBase(SpreadsheetContext base)
Set method for struct member 'base'.void
setModifier_name(CPointer<java.lang.Byte> modifier_name)
Set method for struct member 'modifier_name'.-
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 SpreadsheetContextModifier.It is required when allocating a new block to store data for SpreadsheetContextModifier.
- See Also:
StructDNA
,BlockTable
, Constant Field Values
-
__DNA__FIELD__base
public static final long[] __DNA__FIELD__base
Field descriptor (offset) for struct member 'base'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
SpreadsheetContextModifier spreadsheetcontextmodifier = ...; CPointer<Object> p = spreadsheetcontextmodifier.__dna__addressof(SpreadsheetContextModifier.__DNA__FIELD__base); CPointer<SpreadsheetContext> p_base = p.cast(new Class[]{SpreadsheetContext.class});
Metadata
- Field: 'base'
- Signature: 'SpreadsheetContext'
- Actual Size (32bit/64bit): 16/24
-
__DNA__FIELD__modifier_name
public static final long[] __DNA__FIELD__modifier_name
Field descriptor (offset) for struct member 'modifier_name'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
SpreadsheetContextModifier spreadsheetcontextmodifier = ...; CPointer<Object> p = spreadsheetcontextmodifier.__dna__addressof(SpreadsheetContextModifier.__DNA__FIELD__modifier_name); CPointer<CPointer<Byte>> p_modifier_name = p.cast(new Class[]{CPointer.class, Byte.class});
Metadata
- Field: 'modifier_name'
- Signature: 'char*'
- Actual Size (32bit/64bit): 4/8
-
-
Constructor Detail
-
SpreadsheetContextModifier
public SpreadsheetContextModifier(long __address, Block __block, BlockTable __blockTable)
-
SpreadsheetContextModifier
protected SpreadsheetContextModifier(SpreadsheetContextModifier that)
-
-
Method Detail
-
getBase
public SpreadsheetContext getBase() throws java.io.IOException
Get method for struct member 'base'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__base
-
setBase
public void setBase(SpreadsheetContext base) throws java.io.IOException
Set method for struct member 'base'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__base
-
getModifier_name
public CPointer<java.lang.Byte> getModifier_name() throws java.io.IOException
Get method for struct member 'modifier_name'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__modifier_name
-
setModifier_name
public void setModifier_name(CPointer<java.lang.Byte> modifier_name) throws java.io.IOException
Set method for struct member 'modifier_name'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__modifier_name
-
__io__addressof
public CPointer<SpreadsheetContextModifier> __io__addressof()
Instantiates a pointer on this instance.
-
-