protected TipOfTheDayModel createTipOfTheDayModel() {
// Create a tip model with some tips
DefaultTipOfTheDayModel tips = new DefaultTipOfTheDayModel();
// plain text
tips.add(new DefaultTip("Plain Text Tip", "This is the first tip " + "This is the first tip "
+ "This is the first tip " + "This is the first tip " + "This is the first tip "
+ "This is the first tip\n" + "This is the first tip " + "This is the first tip"));
// html text
tips.add(new DefaultTip("HTML Text Tip", "<html>This is an html <b>TIP</b><br><center>"
+ "<table border=\"1\">" + "<tr><td>1</td><td>entry 1</td></tr>"
+ "<tr><td>2</td><td>entry 2</td></tr>" + "<tr><td>3</td><td>entry 3</td></tr>"
+ "</table>"));
// a Component
tips.add(new DefaultTip("Component Tip", new JTree()));
// an Icon
tips.add(new DefaultTip("Icon Tip", new ImageIcon(BasicTipOfTheDayUI.class
.getResource("resources/TipOfTheDay24.gif"))));
return tips;
}