Biblioteca Java - Blame information for rev 27
Subversion Repositories:
Rev | Author | Line No. | Line |
---|---|---|---|
27 | mihai | 1 | package ex1_airport; |
2 | public interface HWDisplay { | ||
3 | public int getRows(); | ||
4 | public int getCols(); | ||
5 | public void write(int row, int col, char c); | ||
6 | } |