public class Library extends CFacade
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD__filedata
Field descriptor (offset) for struct member 'filedata'.
|
static long[] |
__DNA__FIELD__filepath
Field descriptor (offset) for struct member 'filepath'.
|
static long[] |
__DNA__FIELD__id
Field descriptor (offset) for struct member 'id'.
|
static long[] |
__DNA__FIELD__idblock
Field descriptor (offset) for struct member 'idblock'.
|
static long[] |
__DNA__FIELD__name
Field descriptor (offset) for struct member 'name'.
|
static long[] |
__DNA__FIELD__packedfile
Field descriptor (offset) for struct member 'packedfile'.
|
static long[] |
__DNA__FIELD__parent
Field descriptor (offset) for struct member 'parent'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct Library.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
protected |
Library(Library that) |
|
Library(long __address,
Block __block,
BlockTable __blockTable) |
Modifier and Type | Method and Description |
---|---|
CPointer<Library> |
__io__addressof()
Instantiates a pointer on this instance.
|
CPointer<java.lang.Object> |
getFiledata()
Get method for struct member 'filedata'.
|
CArrayFacade<java.lang.Byte> |
getFilepath()
Get method for struct member 'filepath'.
|
ID |
getId()
Get method for struct member 'id'.
|
CPointer<ID> |
getIdblock()
Get method for struct member 'idblock'.
|
CArrayFacade<java.lang.Byte> |
getName()
Get method for struct member 'name'.
|
CPointer<PackedFile> |
getPackedfile()
Get method for struct member 'packedfile'.
|
CPointer<Library> |
getParent()
Get method for struct member 'parent'.
|
void |
setFiledata(CPointer<java.lang.Object> filedata)
Set method for struct member 'filedata'.
|
void |
setFilepath(CArrayFacade<java.lang.Byte> filepath)
Set method for struct member 'filepath'.
|
void |
setId(ID id)
Set method for struct member 'id'.
|
void |
setIdblock(CPointer<ID> idblock)
Set method for struct member 'idblock'.
|
void |
setName(CArrayFacade<java.lang.Byte> name)
Set method for struct member 'name'.
|
void |
setPackedfile(CPointer<PackedFile> packedfile)
Set method for struct member 'packedfile'.
|
void |
setParent(CPointer<Library> parent)
Set method for struct member 'parent'.
|
__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 Library.
org.cakelab.blender.io.dna.internal.StructDNA}
,
org.cakelab.blender.io.block.BlockTable#allocate}
,
Constant Field Valuespublic static final long[] __DNA__FIELD__id
This is how you get a reference on the corresponding field in the struct:
Library library = ...; CPointer<Object> p = library.__dna__addressof(Library.__DNA__FIELD__id); CPointer<ID> p_id = p.cast(new Class[]{ID.class});
public static final long[] __DNA__FIELD__idblock
This is how you get a reference on the corresponding field in the struct:
Library library = ...; CPointer<Object> p = library.__dna__addressof(Library.__DNA__FIELD__idblock); CPointer<CPointer<ID>> p_idblock = p.cast(new Class[]{CPointer.class, ID.class});
public static final long[] __DNA__FIELD__filedata
This is how you get a reference on the corresponding field in the struct:
Library library = ...; CPointer<Object> p = library.__dna__addressof(Library.__DNA__FIELD__filedata); CPointer<CPointer<Object>> p_filedata = p.cast(new Class[]{CPointer.class, Object.class});
public static final long[] __DNA__FIELD__name
This is how you get a reference on the corresponding field in the struct:
Library library = ...; CPointer<Object> p = library.__dna__addressof(Library.__DNA__FIELD__name); CPointer<CArrayFacade<Byte>> p_name = p.cast(new Class[]{CArrayFacade.class, Byte.class});
public static final long[] __DNA__FIELD__filepath
This is how you get a reference on the corresponding field in the struct:
Library library = ...; CPointer<Object> p = library.__dna__addressof(Library.__DNA__FIELD__filepath); CPointer<CArrayFacade<Byte>> p_filepath = p.cast(new Class[]{CArrayFacade.class, Byte.class});
public static final long[] __DNA__FIELD__parent
This is how you get a reference on the corresponding field in the struct:
Library library = ...; CPointer<Object> p = library.__dna__addressof(Library.__DNA__FIELD__parent); CPointer<CPointer<Library>> p_parent = p.cast(new Class[]{CPointer.class, Library.class});
public static final long[] __DNA__FIELD__packedfile
This is how you get a reference on the corresponding field in the struct:
Library library = ...; CPointer<Object> p = library.__dna__addressof(Library.__DNA__FIELD__packedfile); CPointer<CPointer<PackedFile>> p_packedfile = p.cast(new Class[]{CPointer.class, PackedFile.class});
public Library(long __address, Block __block, BlockTable __blockTable)
protected Library(Library that)
public ID getId() throws java.io.IOException
java.io.IOException
__DNA__FIELD__id
public void setId(ID id) throws java.io.IOException
java.io.IOException
__DNA__FIELD__id
public CPointer<ID> getIdblock() throws java.io.IOException
java.io.IOException
__DNA__FIELD__idblock
public void setIdblock(CPointer<ID> idblock) throws java.io.IOException
java.io.IOException
__DNA__FIELD__idblock
public CPointer<java.lang.Object> getFiledata() throws java.io.IOException
java.io.IOException
__DNA__FIELD__filedata
public void setFiledata(CPointer<java.lang.Object> filedata) throws java.io.IOException
java.io.IOException
__DNA__FIELD__filedata
public CArrayFacade<java.lang.Byte> getName() throws java.io.IOException
java.io.IOException
__DNA__FIELD__name
public void setName(CArrayFacade<java.lang.Byte> name) throws java.io.IOException
java.io.IOException
__DNA__FIELD__name
public CArrayFacade<java.lang.Byte> getFilepath() throws java.io.IOException
java.io.IOException
__DNA__FIELD__filepath
public void setFilepath(CArrayFacade<java.lang.Byte> filepath) throws java.io.IOException
java.io.IOException
__DNA__FIELD__filepath
public CPointer<Library> getParent() throws java.io.IOException
java.io.IOException
__DNA__FIELD__parent
public void setParent(CPointer<Library> parent) throws java.io.IOException
java.io.IOException
__DNA__FIELD__parent
public CPointer<PackedFile> getPackedfile() throws java.io.IOException
java.io.IOException
__DNA__FIELD__packedfile
public void setPackedfile(CPointer<PackedFile> packedfile) throws java.io.IOException
java.io.IOException
__DNA__FIELD__packedfile