]
George Gastaldi reassigned FORGE-760:
-------------------------------------
Assignee: George Gastaldi
When generating new member variables it would be nice if the toString
method updated include the member variable name.
----------------------------------------------------------------------------------------------------------------------
Key: FORGE-760
URL:
https://issues.jboss.org/browse/FORGE-760
Project: Forge
Issue Type: Feature Request
Affects Versions: 1.2.0.Final
Reporter: Jim Tyrrell
Assignee: George Gastaldi
Labels: starter
Fix For: 1.2.1.Final
Current source code generated looks like this:
if (name != null && !name.trim().isEmpty())
result += name;
if (description != null && !description.trim().isEmpty())
result += " " + description;
If it can look like this, it would be much better for end user experience:
if (name != null && !name.trim().isEmpty())
result += "name: " + name;
if (description != null && !description.trim().isEmpty())
result += ", description: " + description;
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: