| Summary: | [nls tooling] NPE in AccessorClassModifier | ||
|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Francis Upton IV <francisu> |
| Component: | Text | Assignee: | JDT-Text-Inbox <jdt-text-inbox> |
| Status: | RESOLVED WORKSFORME | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | daniel_megert, remy.suen |
| Version: | 3.7 | Keywords: | needinfo |
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Linux | ||
| Whiteboard: | |||
|
Description
Francis Upton IV
And even after a subsequent restart it keeps happening, at least on that one file. Could you provide the test case? (In reply to comment #2) > Could you provide the test case? No, I'm not even sure I can make it happen again beyond what is in my current workspace. FWIW, in other editors the Externalize Strings Wizard works fine, but it does not work fine in the editor with this code (even after a restart).
Is there anything I can do with it in this state to try to track the problem down?
package com.oaklandsw.transform.func.functions;
import com.oaklandsw.gui.AbstractForm;
public class VariableNodeForm extends AbstractForm {
public VariableNodeForm() {
super();
}
@Override
public void setupPanel() {
addTitle("Variable Name");
addFieldw(getFieldComp(VariableNode.VARIABLENAME, COMP_TEXT),
FIELD0ALLW);
}
}
> Is there anything I can do with it in this state to try to track the problem
> down?
Is the AST available when you working in that file, e.g. is Mark Occurrences working as expected?
(In reply to comment #5) > Is the AST available when you working in that file, e.g. is Mark Occurrences > working as expected? Yes, highlighting, mark occurrences (had never used that before), F3 on identifiers are all working as expected. I can't reproduce and I don't see how this can happen. If you can narrow down the example or provide more detailed steps, then please reopen the bug again. . |