Skip to content

Commit

Permalink
JBIDE-17657: Fixed compilation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Jun 26, 2014
1 parent 2ddc51a commit cdd7f5d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,9 @@ void setHandlerDocument(Document document) {
handler.setDocument(document);
}

@Override
public Object getCurrentResource() {
return null;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public class TextWidgetTest {
@Override public void sendInput(String input) {
sentInput = input;
}
@Override public Object getCurrentResource() {return null;};
};

private String sentInput = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public class VerifyKeyListenerImplTest {
@Override public void sendInput(String input) {
sentInput = input;
}
@Override public Object getCurrentResource() {return null;};
};

private String sentInput = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ public class AbstractTextViewerTest {
@Override public void sendInput(String input) { sentInput = input; }
@Override public void disconnect() { disconnected = true; }
@Override public void connect(Document document) { connectedDocument = document; }
@Override public Object getCurrentResource() {return null;};
};

private AbstractTextViewer testTextViewer = new AbstractTextViewer(new Shell()) {
Expand Down

0 comments on commit cdd7f5d

Please sign in to comment.