| | |
| | | // Property table |
| | | startTable(); |
| | | tableRow("Description", |
| | | ((prop.getSynopsis() != null) ? prop.getSynopsis().toString()+ " " : "") + |
| | | ((prop.getSynopsis() != null) ? prop.getSynopsis()+ " " : "") + |
| | | ((prop.getDescription() != null) ? |
| | | prop.getDescription().toString() : "")); |
| | | |
| | |
| | | for (Object cst : en.getEnumConstants()) { |
| | | enumStr += cst.toString(); |
| | | if (prop.getValueSynopsis((Enum) cst) != null) { |
| | | enumStr += " - " + prop.getValueSynopsis((Enum) cst).toString(); |
| | | enumStr += " - " + prop.getValueSynopsis((Enum) cst); |
| | | } |
| | | enumStr += getNewLine() + getNewLine(); |
| | | } |