Tagged Questions

5
votes
12answers
448 views
+100

Eclipse as an IDE - What do you find missing as a beginner in Java?

I am working on a solution that aims at solving problems that newbie programmers experience when they are "modifying code" while bug fixing / doing change requests, on code in prod …
0
votes
2answers
31 views
+100

How to use MessageDialog.open() with QUESTION_WITH_CANCEL?

I'm wondering how to use the new *QUESTION_WITH_CANCEL* dialog kind when opened with MessageDialog.open(int kind, Shell parent, String title, String message,int style). Since the …
1
vote
3answers
47 views
+100

Separate standard output from standard error when running a program in eclipse

I am debugging a Java program in eclipse. This program normally writes binary data to its standard output but can write error messages & stack traces to its standard error str …