Bug 79570 - [1.5][DOM] v4 type binding should not be parameterized
Summary: [1.5][DOM] v4 type binding should not be parameterized
Status: VERIFIED FIXED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.1   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: 3.1 M4   Edit
Assignee: Olivier Thomann CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-11-26 11:27 EST by Olivier Thomann CLA
Modified: 2004-12-15 07:39 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Olivier Thomann CLA 2004-11-26 11:27:07 EST
Using example from bug 78183,

package p;
class Gen<X> {
   class Inn {
   }
}
Gen<String> v1;
Gen<String>.Inn v2;
Gen v3;
Gen.Inn v4;

v4 type binding is considered to be parameterized. That answer should be false.
Comment 1 Olivier Thomann CLA 2004-11-26 11:28:00 EST
Fixed and released in HEAD.
Regression test added.
Comment 2 Olivier Thomann CLA 2004-11-26 11:29:55 EST
Regression tests added in ASTConverter15Test.test0082
Comment 3 Jerome Lanneluc CLA 2004-12-15 07:39:03 EST
Verified (in I20041214-20000) that the test ensures that the 4th binding is not
a parameterized type.