import java.util.Properties;
public class Pavan {
Properties props = new Properties();
(X) String message = props.getProperty("message");
String name = message;
public static void main(String args[]) {
Pavan k = new Pavan();
}
}
Hi ,
This is my Sample Program . I am using Eclipse IDE 3.6 version .
i am able to put break points inside the method (Here in this case it is main method ) Here my question is that , cant i put break point at the line (X) String message ??
Please let me know , thanks in advance ??
As far as I know, you can't put breakpoints outside of a method. Why would you put a breakpoint at this line? I never tried but it seems you can add watchpoints.