Package guidoengine
Class guidoelementinfo
- java.lang.Object
-
- guidoengine.guidoelementinfo
-
public final class guidoelementinfo extends java.lang.Object
Guido score element basic description guidoelementinfo is basically a data structure used by the score map API.
-
-
Field Summary
Fields Modifier and Type Field Description static int
kBar
static int
kEmpty
static int
kNote
static int
kPage
static int
kRepeatBegin
static int
kRepeatEnd
static int
kRest
static int
kStaff
static int
kSystem
static int
kSystemSlice
int
staffNum
the current staff number or 0 when naint
type
the event type (kNote, kBar,...
)int
voiceNum
the current voice number or 0 when na
-
Constructor Summary
Constructors Constructor Description guidoelementinfo()
guidoelementinfo(int t, int sn, int vn)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description protected static void
Init()
Internal jni initialization method.
-
-
-
Field Detail
-
kNote
public static final int kNote
- See Also:
- Constant Field Values
-
kRest
public static final int kRest
- See Also:
- Constant Field Values
-
kEmpty
public static final int kEmpty
- See Also:
- Constant Field Values
-
kBar
public static final int kBar
- See Also:
- Constant Field Values
-
kRepeatBegin
public static final int kRepeatBegin
- See Also:
- Constant Field Values
-
kRepeatEnd
public static final int kRepeatEnd
- See Also:
- Constant Field Values
-
kStaff
public static final int kStaff
- See Also:
- Constant Field Values
-
kSystemSlice
public static final int kSystemSlice
- See Also:
- Constant Field Values
-
kSystem
public static final int kSystem
- See Also:
- Constant Field Values
-
kPage
public static final int kPage
- See Also:
- Constant Field Values
-
type
public int type
the event type (kNote, kBar,...
)
-
staffNum
public int staffNum
the current staff number or 0 when na
-
voiceNum
public int voiceNum
the current voice number or 0 when na
-
-