| Summary: | Create Outline below Desktop | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Matthias Villiger <mvi> |
| Component: | Scout | Assignee: | Project Inbox <scout.sdk-inbox> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | enhancement | ||
| Priority: | P3 | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
support for array type added. ticket closed. deliverd as part of eclipse scout 3.8.0 (juno release train) |
Creating a new outline in Scout Explorer in the "Outlines" folder below a Desktop or Desktop Extension does not add the outline to the desktop even the corresponding checkbox in the wizard is ticked. It works fine when the getConfiguredOutlines method in the desktop is of the following format: ArrayList<Class> outlines = new ArrayList<Class>(); outlines.add(MyOutline1.class); outlines.add(MyOutline2.class); return outlines.toArray(new Class[outlines.size()]); But if the getConfiguredOutlines is of the following format the outline cannot be added by the wizard: return new Class[]{MyOutline1.class, MyOutline2.class}; The second format should also be supported.