repo.or.cz
/
Rockbox.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Next step of Makefile tuning: * Use 'make' internal commands for printing messages...
[Rockbox.git]
/
songdbj
/
Entry.java
blob
19ead66c0601d96d559490f4ad74561e2acf15c1
1
import
java
.
io
.*;
2
3
public abstract class
Entry
{
4
protected int
offset
;
5
6
public
Entry
() {
7
offset
=-
1
;
8
}
9
10
public void
setOffset
(
int
pos
) {
offset
=
pos
; }
11
public int
getOffset
() {
return
offset
; }
12
13
public abstract void
write
(
DataOutputStream w
)
throws
IOException
;
14
}