/** * Copyright (C) 2006-2016 Christian Pierre MOMON * * This file is part of Xidyn. * * Xidyn is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Xidyn 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Xidyn. If not, see */ import org.apache.log4j.Level; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import fr.devinsy.util.strings.StringList; import fr.devinsy.xidyn.data.SimpleTagData; import fr.devinsy.xidyn.data.TagDataManager; import fr.devinsy.xidyn.presenters.PresenterUtils; /** * */ class XidynDemo { private static Logger logger = LoggerFactory.getLogger(XidynDemo.class); static { // Initialize logger. org.apache.log4j.BasicConfigurator.configure(); org.apache.log4j.Logger.getRootLogger().setLevel(Level.INFO); } /** * */ public static void main(final String[] args) { System.out.println("Hello World!"); // test (); // TagDataManager data; // Step #01. { try { System.out.println("----------------------------"); String htmlSource = "
a pseudo
"; data = new TagDataManager(); data.setContent("name", "Superman"); String htmlTarget = PresenterUtils.dynamize(htmlSource, data).toString(); System.out.println("datas = new Data ();"); System.out.println("datas.setContent (\"pseudo\", \"Superman\");"); System.out.println("+"); System.out.println("
a pseudo
"); System.out.println("=>"); System.out.println(htmlTarget); System.out.println("[" + htmlSource.length() + "] => [" + htmlTarget.length() + "]"); } catch (Exception exception) { System.out.println(exception.getMessage()); } } // Step #02. { try { System.out.println("----------------------------"); String htmlSource = "
a last name
"; data = new TagDataManager(); data.setContent("pseudo", "Spiderman"); data.appendAttribute("pseudo", "style", "background: blue;"); data.appendAttribute("pseudo", "style", "foreground: red;"); data.setAttribute("pseudo", "class", "nameClass"); String htmlTarget = PresenterUtils.dynamize(htmlSource, data).toString(); System.out.println("
a last name
"); System.out.println("+"); System.out.println("datas = new Data ();"); System.out.println("datas.setContent (\"pseudo\", \"Spiderman\");"); System.out.println("datas.appendAttribute (\"pseudo\", \"style\", \"background: blue;\");"); System.out.println("datas.appendAttribute (\"pseudo\", \"style\", \"foreground: red;\");"); System.out.println("datas.setAttribute (\"pseudo\", \"class\", \"nameClass\");"); System.out.println("=>"); System.out.println(htmlTarget); System.out.println("[" + htmlSource.length() + "] => [" + htmlTarget.length() + "]"); } catch (Exception exception) { System.out.println(exception.getMessage()); } } // Step #03. { System.out.println("----------------------------"); try { StringList source = new StringList(); source.appendln(""); String htmlSource = source.toString(); // Populate attributes. data = new TagDataManager(); data.setContent("words", 0, "alpha"); data.setContent("words", 1, "bravo"); data.setContent("words", 2, "charlie"); data.setContent("words", 3, "delta"); data.setContent("words", 4, "echo"); data.setContent("words", 5, "fox"); String htmlTarget = PresenterUtils.dynamize(htmlSource, data).toString(); System.out.println(htmlSource); System.out.println("+"); System.out.println("datas = new Data ();"); System.out.println("datas.setContent (\"words\", 0, \"alpha\");"); System.out.println("datas.setContent (\"words\", 1, \"bravo\");"); System.out.println("datas.setContent (\"words\", 2, \"charlie\");"); System.out.println("datas.setContent (\"words\", 3, \"delta\");"); System.out.println("datas.setContent (\"words\", 4, \"echo\");"); System.out.println("datas.setContent (\"words\", 5, \"fox\");"); System.out.println("=>"); System.out.println(htmlTarget); System.out.println("[" + htmlSource.length() + "] => [" + htmlTarget.length() + "]"); } catch (Exception exception) { System.out.println(exception.getMessage()); } } // Step #04. { try { System.out.println("----------------------------"); StringBuffer source = new StringBuffer(); source.append("\n"); source.append(" \n"); source.append("
noidJeanReve
"); String htmlSource = source.toString(); // Populate attributes. data = new TagDataManager(); data.setContent("identity", 0, "last_name", "Jemba"); data.setContent("identity", 0, "first_name", "Epo"); data.setContent("identity", 1, "last_name", "Momon"); data.setContent("identity", 1, "first_name", "Christian"); data.setContent("identity", 2, "last_name", "Tronche"); data.setContent("identity", 2, "first_name", "Christophe"); StringBuffer htmlTarget = PresenterUtils.dynamize(htmlSource, data); System.out.println(htmlSource); System.out.println("+"); System.out.println("datas = new Data ();"); System.out.println("datas.setContent (\"identity\", 0, \"last_name\", \"Jemba\");"); System.out.println("datas.setContent (\"identity\", 0, \"first_name\", \"Epo\");"); System.out.println("datas.setContent (\"identity\", 1, \"last_name\", \"Momon\");"); System.out.println("datas.setContent (\"identity\", 1, \"first_name\", \"Christian\");"); System.out.println("datas.setContent (\"identity\", 2, \"last_name\", \"Tronche\");"); System.out.println("datas.setContent (\"identity\", 2, \"first_name\", \"Christophe\");"); System.out.println("=>"); System.out.println(htmlTarget); System.out.println("[" + htmlSource.length() + "] => [" + htmlTarget.length() + "]"); } catch (Exception exception) { System.out.println(exception.getMessage()); } } // Step #05. { System.out.println("----------------------------"); // StringBuffer source = new StringBuffer(); source.append("\n"); source.append(" \n"); source.append(" \n"); source.append(" \n"); source.append(" \n"); source.append("
noidFirst NameLast Name
noidJeanReve
noida first namea last name
noida first name morea last name more
\n"); String htmlSource = source.toString(); // Populate attributes. data = new TagDataManager(); data.setContent("identity", 0, "last_name", "Jemba"); data.setContent("identity", 0, "first_name", "Epo"); data.setContent("identity", 1, "last_name", "Momon"); data.setContent("identity", 1, "first_name", "Christian"); data.setContent("identity", 2, "last_name", "Tronche"); data.setContent("identity", 2, "first_name", "Christophe"); // datas.setIterationStrategy ("identity", // IdsDataByIndex.IterationStrategy.ONLY_ROWS_WITH_ID); // datas.setIterationStrategy ("identity", // IdsDataByIndex.IterationStrategy.ONLY_ROWS_WITHOUT_ID); // datas.setIterationStrategy ("identity", // IdsDataByIndex.IterationStrategy.ALL_ROWS); System.out.println(htmlSource); System.out.println("+"); System.out.println("datas = new Data ();"); System.out.println("datas.setContent (\"identity\", 0, \"first_name\", \"Epo\");"); System.out.println("datas.setContent (\"identity\", 0, \"last_name\", \"Jemba\");"); System.out.println("datas.setContent (\"identity\", 1, \"first_name\", \"Christian\");"); System.out.println("datas.setContent (\"identity\", 1, \"last_name\", \"Momon\");"); System.out.println("datas.setContent (\"identity\", 2, \"first_name\", \"Christophe\");"); System.out.println("datas.setContent (\"identity\", 2, \"last_name\", \"Tronche\");"); System.out.println("=>"); // #05.1 data.setIterationStrategy("identities", SimpleTagData.IterationStrategy.ONLY_FIRST_ROW); System.out.println("ONLY_FIRST_ROW:"); StringBuffer html; try { html = PresenterUtils.dynamize(htmlSource, data); } catch (Exception exception) { System.out.println(exception.getMessage()); html = null; } System.out.println(html); System.out.println(""); // #05.2 data.setIterationStrategy("identities", SimpleTagData.IterationStrategy.ONLY_FIRST_TWO_ROWS); System.out.println("ONLY_FIRST_TWO_ROWS:"); try { html = PresenterUtils.dynamize(htmlSource, data); } catch (Exception exception) { System.out.println(exception.getMessage()); html = null; } System.out.println(html); System.out.println(""); // #05.3 data.setIterationStrategy("identities", SimpleTagData.IterationStrategy.ONLY_ROWS_WITH_ID); System.out.println("ONLY_ROWS_WITH_ID:"); try { html = PresenterUtils.dynamize(htmlSource, data); } catch (Exception exception) { System.out.println(exception.getMessage()); html = null; } System.out.println(html); System.out.println(""); // #05.4 data.setIterationStrategy("identities", SimpleTagData.IterationStrategy.ONLY_ROWS_WITHOUT_ID); System.out.println("ONLY_ROWS_WITHOUT_ID:"); try { html = PresenterUtils.dynamize(htmlSource, data); } catch (Exception exception) { System.out.println(exception.getMessage()); html = null; } System.out.println(html); System.out.println(""); // #05.5 data.setIterationStrategy("identities", SimpleTagData.IterationStrategy.ALL_ROWS); System.out.println("ALL_ROWS:"); try { html = PresenterUtils.dynamize(htmlSource, data); } catch (Exception exception) { System.out.println(exception.getMessage()); html = null; } System.out.println(html); } } }