OSDN Git Service

7b5b8a0855c8c0452c04410f8dc8e241adef20a9
[pf3gnuchains/gcc-fork.git] / libjava / java / awt / MediaEntry.java
1 /* MediaEntry.java -- An entry in a MediaTracker
2    Copyright (C) 1999 Free Software Foundation, Inc.
3
4 This file is part of GNU Classpath.
5
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING.  If not, write to the
18 Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA.
20
21 As a special exception, if you link this library with other files to
22 produce an executable, this library does not by itself cause the
23 resulting executable to be covered by the GNU General Public License.
24 This exception does not however invalidate any other reasons why the
25 executable file might be covered by the GNU General Public License. */
26
27
28 package java.awt;
29
30 /**
31   * This is an entry in the media tracker
32   *
33   * @author Aaron M. Renn (arenn@urbanophile.com)
34   */
35 abstract class MediaEntry implements java.io.Serializable
36 {
37
38 protected static final int LOADING = 1;
39 protected static final int ABORTED = 2;
40 protected static final int ERRORED = 4;
41 protected static final int COMPLETE = 8;
42 protected static final int LOADSTARTED = 16;
43 protected static final int DONE = 32;
44
45 private MediaTracker tracker;
46 private int ID;
47 private int status;
48 private boolean cancelled;
49 private MediaEntry next;
50
51 static MediaEntry
52 insert(MediaEntry a, MediaEntry b)
53 {
54   while (a.next != null)
55     a = a.next;
56
57   a.next = b;
58   return(b);
59 }
60
61 MediaEntry(MediaTracker tracker, int ID)
62 {
63   this.tracker = tracker;
64   this.ID = ID;
65 }
66
67 public int
68 getID()
69 {
70   return(ID);
71 }
72
73 public int
74 getStatus()
75 {
76   return(status);
77 }
78
79 public void
80 setStatus(int status)
81 {
82   this.status = status;
83 }
84
85 public MediaEntry
86 getNext()
87 {
88   return(next);
89 }
90
91 public void
92 cancel()
93 {
94   cancelled = true;
95   if ((status == LOADING) || (status == LOADSTARTED))
96     setStatus(ABORTED);
97 }
98
99 abstract void
100 startLoad();
101
102 abstract Object
103 getMedia();
104
105 } // class MediaEntry 
106