annotate src/alice/CodeSegment.java @ 0:4284468e2711 init

init project
author kazz <kazz@cr.ie.u-ryukyu.ac.jp>
date Sun, 05 Jun 2011 13:44:53 +0900
parents
children a57bf4ff773a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
4284468e2711 init project
kazz <kazz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 package alice;
4284468e2711 init project
kazz <kazz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
2
4284468e2711 init project
kazz <kazz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3 import java.util.LinkedList;
4284468e2711 init project
kazz <kazz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4
4284468e2711 init project
kazz <kazz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 public abstract class CodeSegment extends Segment {
4284468e2711 init project
kazz <kazz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
6 LinkedList<CodeSegment> waitingSegments = new LinkedList<CodeSegment>();
4284468e2711 init project
kazz <kazz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
7 LinkedList<CodeSegment> startingSegments = new LinkedList<CodeSegment>();
4284468e2711 init project
kazz <kazz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
8 }