474475476477478479480481482483484
/** * {@inheritDoc} */ public CharSequence getPageNumberSuffix() { final FolioSuffix suffix = this.traitGeneratedBy().getFolioSuffix(); if (suffix == null) { return WKConstants.EMPTY_STRING; } return suffix.getContentAsText(); }
224225226227228229230231232233234
} case FOLIO_PREFIX: { return new FolioPrefix(parent, propertyList); } case FOLIO_SUFFIX: { return new FolioSuffix(parent, propertyList); } case FOOTNOTE: { return new Footnote(parent, propertyList); } case FOOTNOTE_BODY: {