Z3
src
api
java
ConstructorList.java
Go to the documentation of this file.
1
18
package
com.microsoft.z3;
19
23
public
class
ConstructorList
extends
Z3Object
24
{
29
protected
void
finalize
()
30
{
31
Native
.
delConstructorList
(getContext().nCtx(), getNativeObject());
32
}
33
34
ConstructorList
(
Context
ctx,
long
obj)
35
{
36
super(ctx, obj);
37
}
38
39
ConstructorList
(
Context
ctx,
Constructor
[] constructors)
40
{
41
super(ctx);
42
43
setNativeObject(
Native
.
mkConstructorList
(getContext().nCtx(),
44
(
int
) constructors.length,
45
Constructor
.arrayToNative(constructors)));
46
}
47
}
com.microsoft.z3.ConstructorList.finalize
void finalize()
Definition:
ConstructorList.java:29
com.microsoft.z3.Context
Definition:
Context.java:27
com.microsoft.z3.Constructor
Definition:
Constructor.java:23
com.microsoft.z3.Native
Definition:
Native.java:4
com.microsoft.z3.Native.mkConstructorList
static long mkConstructorList(long a0, int a1, long[] a2)
Definition:
Native.java:995
com.microsoft.z3.Z3Object
Definition:
Z3Object.java:24
com.microsoft.z3.Native.delConstructorList
static void delConstructorList(long a0, long a1)
Definition:
Native.java:1004
com.microsoft.z3.ConstructorList
Definition:
ConstructorList.java:23
Generated on Tue Jul 19 2016 21:26:48 for Z3 by
1.8.11