commentedOutStyle = doc.addStyle("COMMENTED_OUT_STYLE", null);
StyleConstants.setForeground(commentedOutStyle, Color.GRAY);
StyleConstants.setItalic(commentedOutStyle, true);
strikeOutStyle = doc.addStyle("STRIKE_OUT", null);
StyleConstants.setStrikeThrough(strikeOutStyle, true);
StyleConstants.setBold(strikeOutStyle, false);
fontSizeStyle = doc.addStyle("FONT_SIZE", null);
StyleConstants.setFontSize(fontSizeStyle, 40);