| Summary: | [content assist] Completion for an anonymous inner class should not result in syntax error (missing methods) | ||
|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Lars Vogel <Lars.Vogel> |
| Component: | Text | Assignee: | JDT-Text-Inbox <jdt-text-inbox> |
| Status: | RESOLVED WORKSFORME | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | daniel_megert, deepakazad, kkazmierczyk+eclipse, Lars.Vogel, remy.suen, sbouchet |
| Version: | 3.8 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Linux | ||
| Whiteboard: | |||
|
Description
Lars Vogel
3.8 M5.
Have:
package p;
abstract class Abstract {
public abstract void doIt();
}
public class Testle {
void a() {
new Abstrac<content assist here>
}
}
==>
package p;
abstract class Abstract {
public abstract void doIt();
}
public class Testle {
void a() {
new Abstract() {
@Override
public void doIt() {
// TODO Auto-generated method stub
}
};
}
}
Works for me too. Sorry for this bug. |