History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: IDEADEV-20881
Type: Bug Bug
Status: Open Open
Priority: Normal Normal
Assignee: Alexey Kudravtsev
Reporter: Fabian Merki
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
IDEA: Development

Can't generate delegates of typed super-class attributes

Created: 01 Sep 07 16:18   Updated: 10 Sep 07 13:10
Component/s: Editor. Code Completion, Editor. Editing Text, Editor. Intention Actions
Fix Version/s: None

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown
File Attachments: None
Image Attachments:

1. bug.gif
(9 kb)
Environment: Windows - but shouldn't matter!

Build: 6,833
Severity: Medium


 Description  « Hide
in sub it is not possible to generate delegations! in the dialog data:T is shown but it should / must know the type StringBuffer

public class Base<T> {
protected T data;
public Base(T t) { data = t; }
}
public class Sub extends Base<StringBuffer> {
public Sub (StringBuffer sb) { super(sb); }
// now i would like to delegate to the sb which is 'data' in the superclass
}



 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.