Bug 1062580
| Summary: | Java code viewer doesn't show generics properly | ||
|---|---|---|---|
| Product: | [Retired] JBoss BPMS Platform 6 | Reporter: | Walter Medvedeo <wmedvede> |
| Component: | Data Modeler | Assignee: | Jan <jschatte> |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Zuzana Krejčová <zkrejcov> |
| Severity: | low | Docs Contact: | |
| Priority: | low | ||
| Version: | 6.0.0 | CC: | kverlaen, lpetrovi, rrajasek |
| Target Milestone: | ER1 | ||
| Target Release: | 6.0.1 | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2014-08-06 20:02:43 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
Fixed in: Master: http://github.com/droolsjbpm/kie-wb-common/commit/6b91d3984 Fix pushed also into 6.0.x: http://github.com/droolsjbpm/kie-wb-common/commit/934b5f263 |
Description of problem: When the datamodeller generates a .java file like this: public java.util.List<org.kie.external.ClaseExternalInterface> getInterfaz() { return this.interfaz; } public void setInterfaz(java.util.List<org.kie.external.ClaseExternalInterface> interfaz) { this.interfaz = interfaz; } If you go to the project browser and click on the .java file, the java code viewer shows somethinig like this: 23. | public java.util.List getInterfaz() { 24. | return this.interfaz; 25. | } 26. | 27. | public void setInterfaz(java.util.List interfaz) { 28. | this.interfaz = interfaz; 29. | } The generics part <org.kie.external.ClaseExternalInterface> is not being shown properly. Version-Release number of selected component (if applicable): How reproducible: Steps to Reproduce: 1. 2. 3. Actual results: Expected results: Additional info: