git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@3 72836036-5685-4462-b002-a69064685172
15 lines
No EOL
198 B
Java
15 lines
No EOL
198 B
Java
package jrummikub.view;
|
|
|
|
public interface IView {
|
|
|
|
/**
|
|
* @return the table
|
|
*/
|
|
public ITable getTable();
|
|
|
|
/**
|
|
* @return the playerPanel
|
|
*/
|
|
public IPlayerPanel getPlayerPanel();
|
|
|
|
} |