| Summary: | Cannot "Generate Delegate Methods..." | ||
|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Victor Toni <victor.toni> |
| Component: | UI | Assignee: | Tobias Widmer <tobias_widmer> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P2 | ||
| Version: | 3.1 | ||
| Target Milestone: | 3.1 M6 | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
Fixed > 20050223 Verified that _exception and all its public methods get proposed. Works in 3.1M6. |
I have this snippet and I would expect that I may create delegate methods for the member. However no methods of the member are presented for choice. Tested with 3.1M5a. ----- public class DelegateException { Exception _exception; public DelegateException(Exception exception) { _exception = exception; } }