Get the PCC text with the saved name @return the PCC text with the saved name
()
| 227 | * @return the PCC text with the saved name |
| 228 | */ |
| 229 | public String getPCCText() |
| 230 | { |
| 231 | StringJoiner txt = new StringJoiner("\t"); |
| 232 | txt.add(getDisplayName()); |
| 233 | Globals.getContext().unparse(this).forEach(txt::add); |
| 234 | txt.add(PrerequisiteWriter.prereqsToString(this)); |
| 235 | return txt.toString(); |
| 236 | } |
| 237 | |
| 238 | public String getSource() |
| 239 | { |