text = text.replaceAll("\n", " ");
// Supprimer les tabulations
text = text.replaceAll("\t", " ");
if (text.equals(BundleHelper.getInstance().getExcludedPage())) {
throw new ImpressWarning("Texte exclu");
} else if (text == null || "".equals(text)) {
throw new ImpressWarning("text vide");
} else {
this.title = text.trim();
}
if (style == null || "".equals(style)) {
throw new ImpressWarning("style vide");
} else {
this.style = style;
}
this.page = page;
}