Fix many comments, fix tests, fix complexity
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@462 72836036-5685-4462-b002-a69064685172
This commit is contained in:
parent
823ef9d4fe
commit
bc835d499f
8 changed files with 265 additions and 101 deletions
|
@ -67,6 +67,8 @@ public class MockView implements IView {
|
|||
public MockEvent endPauseEvent = new MockEvent();
|
||||
/** */
|
||||
public MockEvent networkGameEvent = new MockEvent();
|
||||
/** */
|
||||
public MockEvent acknowledgeInvalidEvent = new MockEvent();
|
||||
|
||||
@Override
|
||||
public MockTablePanel getTablePanel() {
|
||||
|
@ -100,8 +102,7 @@ public class MockView implements IView {
|
|||
|
||||
@Override
|
||||
public IEvent getAcknowledgeInvalidEvent() {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
return acknowledgeInvalidEvent;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -221,19 +222,19 @@ public class MockView implements IView {
|
|||
@Override
|
||||
public void setInitialMeldError(int points) {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setStoneCollectionHidden(boolean enable) {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setInitialMeldFirstError() {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Reference in a new issue