public class SpreadsheetColumn extends CFacade
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD__id
Field descriptor (offset) for struct member 'id'.
|
static long[] |
__DNA__FIELD__next
Field descriptor (offset) for struct member 'next'.
|
static long[] |
__DNA__FIELD__prev
Field descriptor (offset) for struct member 'prev'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct SpreadsheetColumn.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
|
SpreadsheetColumn(long __address,
Block __block,
BlockTable __blockTable) |
protected |
SpreadsheetColumn(SpreadsheetColumn that) |
Modifier and Type | Method and Description |
---|---|
CPointer<SpreadsheetColumn> |
__io__addressof()
Instantiates a pointer on this instance.
|
CPointer<SpreadsheetColumnID> |
getId()
Get method for struct member 'id'.
|
CPointer<SpreadsheetColumn> |
getNext()
Get method for struct member 'next'.
|
CPointer<SpreadsheetColumn> |
getPrev()
Get method for struct member 'prev'.
|
void |
setId(CPointer<SpreadsheetColumnID> id)
Set method for struct member 'id'.
|
void |
setNext(CPointer<SpreadsheetColumn> next)
Set method for struct member 'next'.
|
void |
setPrev(CPointer<SpreadsheetColumn> prev)
Set method for struct member 'prev'.
|
__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
public static final int __DNA__SDNA_INDEX
It is required when allocating a new block to store data for SpreadsheetColumn.
org.cakelab.blender.io.dna.internal.StructDNA}
,
org.cakelab.blender.io.block.BlockTable#allocate}
,
Constant Field Valuespublic static final long[] __DNA__FIELD__next
This is how you get a reference on the corresponding field in the struct:
SpreadsheetColumn spreadsheetcolumn = ...; CPointer<Object> p = spreadsheetcolumn.__dna__addressof(SpreadsheetColumn.__DNA__FIELD__next); CPointer<CPointer<SpreadsheetColumn>> p_next = p.cast(new Class[]{CPointer.class, SpreadsheetColumn.class});
public static final long[] __DNA__FIELD__prev
This is how you get a reference on the corresponding field in the struct:
SpreadsheetColumn spreadsheetcolumn = ...; CPointer<Object> p = spreadsheetcolumn.__dna__addressof(SpreadsheetColumn.__DNA__FIELD__prev); CPointer<CPointer<SpreadsheetColumn>> p_prev = p.cast(new Class[]{CPointer.class, SpreadsheetColumn.class});
public static final long[] __DNA__FIELD__id
Identifies the data in the column. This is a pointer instead of a struct to make it easier if we want to "subclass" SpreadsheetColumnID
in the future for different kinds of ids.
This is how you get a reference on the corresponding field in the struct:
SpreadsheetColumn spreadsheetcolumn = ...; CPointer<Object> p = spreadsheetcolumn.__dna__addressof(SpreadsheetColumn.__DNA__FIELD__id); CPointer<CPointer<SpreadsheetColumnID>> p_id = p.cast(new Class[]{CPointer.class, SpreadsheetColumnID.class});
public SpreadsheetColumn(long __address, Block __block, BlockTable __blockTable)
protected SpreadsheetColumn(SpreadsheetColumn that)
public CPointer<SpreadsheetColumn> getNext() throws java.io.IOException
java.io.IOException
__DNA__FIELD__next
public void setNext(CPointer<SpreadsheetColumn> next) throws java.io.IOException
java.io.IOException
__DNA__FIELD__next
public CPointer<SpreadsheetColumn> getPrev() throws java.io.IOException
java.io.IOException
__DNA__FIELD__prev
public void setPrev(CPointer<SpreadsheetColumn> prev) throws java.io.IOException
java.io.IOException
__DNA__FIELD__prev
public CPointer<SpreadsheetColumnID> getId() throws java.io.IOException
Identifies the data in the column. This is a pointer instead of a struct to make it easier if we want to "subclass" SpreadsheetColumnID
in the future for different kinds of ids.
java.io.IOException
__DNA__FIELD__id
public void setId(CPointer<SpreadsheetColumnID> id) throws java.io.IOException
Identifies the data in the column. This is a pointer instead of a struct to make it easier if we want to "subclass" SpreadsheetColumnID
in the future for different kinds of ids.
java.io.IOException
__DNA__FIELD__id
public CPointer<SpreadsheetColumn> __io__addressof()