| Summary: | can NOT get current timestamp | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Jing Qian <jqian> |
| Component: | EDT | Assignee: | Project Inbox <edt.javagen-inbox> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | blocker | ||
| Priority: | P3 | CC: | jeffdouglas |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
fixed verified & close 20111009's build |
Run the following program, you will get egl.lang.TypeCastException package a; // basic program // program timeProgram type BasicProgram {} function main() getTimeStamp(); end function getTimeStamp() returns (String) currentTime String; format String = "yyyyMMdd_HHmmss"; myTime TimeStamp; currentTime = strLib.formatTimestamp(myTime, format); SysLib.writeStdOut ("c: "+ currentTime); return (currentTime); end end