| Summary: | Generic type aware in the model import | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Yves YANG <yves.yang> |
| Component: | PMF | Assignee: | Yves YANG <yves.yang> |
| Status: | CLOSED WONTFIX | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows 7 | ||
| Whiteboard: | |||
The project gets obsolete |
In PMF, we can define the model using the generic type like the one in Java. For example, in e4 MElementContainer takes a Type Parameter of MUIElement public interface MElementContainer<T extends MUIElement> extends MUIElement { ... } When we import it in PMF, this class must be ignored. In case of the specialization with a concret type like the following class MWindow: public interface MWindow extends MElementContainer<MWindowElement>, MUILabel, MContext, MHandlerContainer, MBindings { ... } The generator should not generate UI Data Forms of generic type.