Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 355429

Summary: Generated Java errors on dateFromGregorian and dateFromJulian
Product: z_Archived Reporter: broy2
Component: EDTAssignee: Project Inbox <edt.javagen-inbox>
Status: CLOSED FIXED QA Contact:
Severity: normal    
Priority: P3 CC: mheitz
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows XP   
Whiteboard:

Description broy2 CLA 2011-08-22 15:33:18 EDT
Build Identifier: 2011

myDate = dateTimeLib.dateFromGregorian(i);
Causes: The method dateFromGregorian(int) is undefined for the type DateTimeLib	

myDate = dateTimeLib.dateFromJulian(i);
Causess: The method dateFromJulian(int) is undefined for the type DateTimeLib


Reproducible: Always

Steps to Reproduce:
1.myDate string;
2.myDate = dateTimeLib.dateFromGregorian(i);
3.myDate = dateTimeLib.dateFromJulian(i);
Comment 1 Matt Heitz CLA 2011-08-24 22:47:31 EDT
The runtime methods were mistakenly called dateValueFromGregorian and dateValueFromJulian.  I renamed them.
Comment 2 broy2 CLA 2011-08-29 10:51:35 EDT
Verified 20110828