| Summary: | List functions are missing from Java runtime | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Kathy Carroll <carrollk> |
| Component: | EDT | Assignee: | Jeff Douglas <jeffdouglas> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | mheitz |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
Many methods are missing from the runtime's EglList class. I added getSize and removeAll but several more are needed so I'm keeping this bug open and changing the description. fixed Verified getSize(); Will change defect status once testcase for List is written Verified 201110120952. assuming er covers list testing |
EGL CODE package explore; library tester {} function getSizeTest() myList string[] = ["Red", "Blue", "Green"]; size int = myList.getSize(); Syslib.writeStdOut(size); end end Java Error The method getSize() is undefined for the type EglList<String> Java Code public void getSizeTest() { egl.lang.EglList<String> myList = null; myList = EglAny.ezeCast(new EglList<String>(3).ezeSet(1, EString.ezeCast("Red")).ezeSet(2, EString.ezeCast("Blue")).ezeSet(3, EString.ezeCast("Green")), EglList.class); int size = 0; size = myList.getSize(); String eze$Temp1 = Constants.EMPTY_STRING; eze$Temp1 = EString.asString(size); SysLib.writeStdout(eze$Temp1); }