Bugs item #962297, was opened at 2004-05-28 09:00
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=962297&group_id=44253
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: F2 fails when arguments expected.
Initial Comment:
F.ex: Run the following code with F2-key.
public class A{
public static void main(String[] args){
if (args.length<1){
throw new RuntimeException("Missing Args");
}
else{
for(int i= 0;i<args.length;i++){
System.out.println(args[i]);
}
}
}
}
This behaviour should be documented at the very least.
If a popup box was used to take in the arguments, a
run-button could be used.
I was actually surprised to find the F2 functionality
because I thought the run button was not desired as to
the problem with the argument passing. Since its there
should it not be made fully?
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=962297&group_id=44253
|