From b710da8b5f984cd01e57d9d80bfdbb5db0a5e4ab Mon Sep 17 00:00:00 2001 From: "Christian P. MOMON" Date: Sat, 6 May 2017 01:13:04 +0200 Subject: [PATCH] Added Demo. --- src/fr/devinsy/util/rss/demo/RssDemo.java | 56 +++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 src/fr/devinsy/util/rss/demo/RssDemo.java diff --git a/src/fr/devinsy/util/rss/demo/RssDemo.java b/src/fr/devinsy/util/rss/demo/RssDemo.java new file mode 100644 index 0000000..3ae6c37 --- /dev/null +++ b/src/fr/devinsy/util/rss/demo/RssDemo.java @@ -0,0 +1,56 @@ +/* + * Copyright (C) 2017 Christian Pierre MOMON + * + * This file is part of Devinsy-rss. + * + * Devinsy-rss is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * Devinsy-rss is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with Devinsy-rss. If not, see + */ +package fr.devinsy.util.rss.demo; + +import fr.devinsy.util.strings.StringList; + +/** + * The Class RssDemo. + */ +public class RssDemo +{ + /** + * The main method. + * + * @param args + * the arguments + */ + public static void main(final String[] args) + { + // #1 + { + StringList strings = new StringList(); + + strings.appendln("========== DEMO #1;"); + strings.appendln(); + + System.out.println(strings.toString()); + } + + // #2 + { + StringList strings = new StringList(); + + strings.appendln("========== DEMO #2;"); + strings.appendln(); + + System.out.println(strings.toString()); + } + } +}