
|
If you were logged in you would be able to see more operations.
|
|
|
|
Original Estimate:
|
Unknown
|
Remaining Estimate:
|
Unknown
|
Time Spent:
|
Unknown
|
|
Environment:
|
Windows XP Pro
|
|
| Build: |
5,581
|
| Severity: |
Medium
|
Reproduce:
- Set language-level to 1.4 for a project.
- Create a new class that implements ProjectComponent (OpenAPI):
public class IdeaDocConfiguration implements ProjectComponent {
}
- IDEA tells you you need to implement some methods defined in the ProjectComponent interface
- Press ALT+ENTER and choose 'Implement methods'.
- Annotations are added to the getComponentName method, while they are not supported until Java5:
@NonNls
@NotNull
public String getComponentName() {
return null; //To change body of implemented methods use File | Settings | File Templates.
}
|
|
Description
|
Reproduce:
- Set language-level to 1.4 for a project.
- Create a new class that implements ProjectComponent (OpenAPI):
public class IdeaDocConfiguration implements ProjectComponent {
}
- IDEA tells you you need to implement some methods defined in the ProjectComponent interface
- Press ALT+ENTER and choose 'Implement methods'.
- Annotations are added to the getComponentName method, while they are not supported until Java5:
@NonNls
@NotNull
public String getComponentName() {
return null; //To change body of implemented methods use File | Settings | File Templates.
}
|
Show » |
|