Package org.blender.dna
Class bConstraintChannel
- java.lang.Object
-
- org.cakelab.blender.nio.CFacade
-
- org.blender.dna.bConstraintChannel
-
-
Field Summary
Fields Modifier and Type Field Description static long[]
__DNA__FIELD__flag
Field descriptor (offset) for struct member 'flag'.static long[]
__DNA__FIELD__ipo
Field descriptor (offset) for struct member 'ipo'.static long[]
__DNA__FIELD__name
Field descriptor (offset) for struct member 'name'.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 bConstraintChannel.-
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 bConstraintChannel(long __address, Block __block, BlockTable __blockTable)
protected
bConstraintChannel(bConstraintChannel that)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CPointer<bConstraintChannel>
__io__addressof()
Instantiates a pointer on this instance.short
getFlag()
Get method for struct member 'flag'.CPointer<Ipo>
getIpo()
Get method for struct member 'ipo'.CArrayFacade<java.lang.Byte>
getName()
Get method for struct member 'name'.CPointer<bConstraintChannel>
getNext()
Get method for struct member 'next'.CPointer<bConstraintChannel>
getPrev()
Get method for struct member 'prev'.void
setFlag(short flag)
Set method for struct member 'flag'.void
setIpo(CPointer<Ipo> ipo)
Set method for struct member 'ipo'.void
setName(CArrayFacade<java.lang.Byte> name)
Set method for struct member 'name'.void
setNext(CPointer<bConstraintChannel> next)
Set method for struct member 'next'.void
setPrev(CPointer<bConstraintChannel> prev)
Set method for struct member 'prev'.-
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 bConstraintChannel.It is required when allocating a new block to store data for bConstraintChannel.
- See Also:
StructDNA
,BlockTable
, Constant Field Values
-
__DNA__FIELD__next
public static final long[] __DNA__FIELD__next
Field descriptor (offset) for struct member 'next'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
bConstraintChannel bconstraintchannel = ...; CPointer<Object> p = bconstraintchannel.__dna__addressof(bConstraintChannel.__DNA__FIELD__next); CPointer<CPointer<bConstraintChannel>> p_next = p.cast(new Class[]{CPointer.class, bConstraintChannel.class});
Metadata
- Field: 'next'
- Signature: 'bConstraintChannel*'
- Actual Size (32bit/64bit): 4/8
-
__DNA__FIELD__prev
public static final long[] __DNA__FIELD__prev
Field descriptor (offset) for struct member 'prev'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
bConstraintChannel bconstraintchannel = ...; CPointer<Object> p = bconstraintchannel.__dna__addressof(bConstraintChannel.__DNA__FIELD__prev); CPointer<CPointer<bConstraintChannel>> p_prev = p.cast(new Class[]{CPointer.class, bConstraintChannel.class});
Metadata
- Field: 'prev'
- Signature: 'bConstraintChannel*'
- Actual Size (32bit/64bit): 4/8
-
__DNA__FIELD__ipo
public static final long[] __DNA__FIELD__ipo
Field descriptor (offset) for struct member 'ipo'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
bConstraintChannel bconstraintchannel = ...; CPointer<Object> p = bconstraintchannel.__dna__addressof(bConstraintChannel.__DNA__FIELD__ipo); CPointer<CPointer<Ipo>> p_ipo = p.cast(new Class[]{CPointer.class, Ipo.class});
Metadata
- Field: 'ipo'
- Signature: 'Ipo*'
- Actual Size (32bit/64bit): 4/8
-
__DNA__FIELD__flag
public static final long[] __DNA__FIELD__flag
Field descriptor (offset) for struct member 'flag'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
bConstraintChannel bconstraintchannel = ...; CPointer<Object> p = bconstraintchannel.__dna__addressof(bConstraintChannel.__DNA__FIELD__flag); CPointer<Short> p_flag = p.cast(new Class[]{Short.class});
Metadata
- Field: 'flag'
- Signature: 'short'
- Actual Size (32bit/64bit): 2/2
-
__DNA__FIELD__name
public static final long[] __DNA__FIELD__name
Field descriptor (offset) for struct member 'name'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
bConstraintChannel bconstraintchannel = ...; CPointer<Object> p = bconstraintchannel.__dna__addressof(bConstraintChannel.__DNA__FIELD__name); CPointer<CArrayFacade<Byte>> p_name = p.cast(new Class[]{CArrayFacade.class, Byte.class});
Metadata
- Field: 'name'
- Signature: 'char[30]'
- Actual Size (32bit/64bit): 30/30
-
-
Constructor Detail
-
bConstraintChannel
public bConstraintChannel(long __address, Block __block, BlockTable __blockTable)
-
bConstraintChannel
protected bConstraintChannel(bConstraintChannel that)
-
-
Method Detail
-
getNext
public CPointer<bConstraintChannel> getNext() throws java.io.IOException
Get method for struct member 'next'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__next
-
setNext
public void setNext(CPointer<bConstraintChannel> next) throws java.io.IOException
Set method for struct member 'next'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__next
-
getPrev
public CPointer<bConstraintChannel> getPrev() throws java.io.IOException
Get method for struct member 'prev'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__prev
-
setPrev
public void setPrev(CPointer<bConstraintChannel> prev) throws java.io.IOException
Set method for struct member 'prev'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__prev
-
getIpo
public CPointer<Ipo> getIpo() throws java.io.IOException
Get method for struct member 'ipo'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__ipo
-
setIpo
public void setIpo(CPointer<Ipo> ipo) throws java.io.IOException
Set method for struct member 'ipo'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__ipo
-
getFlag
public short getFlag() throws java.io.IOException
Get method for struct member 'flag'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__flag
-
setFlag
public void setFlag(short flag) throws java.io.IOException
Set method for struct member 'flag'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__flag
-
getName
public CArrayFacade<java.lang.Byte> getName() throws java.io.IOException
Get method for struct member 'name'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__name
-
setName
public void setName(CArrayFacade<java.lang.Byte> name) throws java.io.IOException
Set method for struct member 'name'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__name
-
__io__addressof
public CPointer<bConstraintChannel> __io__addressof()
Instantiates a pointer on this instance.
-
-