repo.or.cz
/
rmh3093.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
lajdlksadlmla
[rmh3093.git]
/
lab2
/
RCS
/
Flyer.java,v
blob
56cd2fd5ca5b3934082bdf056f97f0f3edfebf5f
1
head 1.1;
2
access;
3
symbols;
4
locks; strict;
5
comment @# @;
6
7
8
1.1
9
date 2008.03.23.15.12.40; author rmh3093; state Exp;
10
branches;
11
next ;
12
13
14
desc
15
@Initial commit
16
@
17
18
19
1.1
20
log
21
@Initial revision
22
@
23
text
24
@/*
25
* Flyer.java
26
*
27
* Version:
28
* $Id$
29
*
30
* Revisions:
31
* $Log$
32
*
33
*/
34
35
/**
36
* Fly is the interface for flying.
37
*/
38
public interface Flyer {
39
40
/**
41
* Ask the Flyer to fly.
42
*/
43
void fly();
44
45
}@