Normalize copyright headers.
This commit is contained in:
parent
e345a9bf40
commit
1dea016680
28 changed files with 729 additions and 197 deletions
59
.settings/com.wdev91.eclipse.copyright.xml
Normal file
59
.settings/com.wdev91.eclipse.copyright.xml
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
<project>
|
||||||
|
<owner></owner>
|
||||||
|
<copyright><![CDATA[Copyright (C) 2014 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 <http://www.gnu.org/licenses/>]]></copyright>
|
||||||
|
<header contentId="org.eclipse.pde.fragmentManifest" excluded="true" />
|
||||||
|
<header contentId="org.eclipse.pde.pluginProperties" excluded="true" />
|
||||||
|
<header contentId="org.eclipse.pde.productFile" excluded="true" />
|
||||||
|
<header contentId="org.eclipse.jst.j2ee.appclientDD" excluded="true" />
|
||||||
|
<header contentId="org.eclipse.ant.core.antBuildFile" excluded="true" />
|
||||||
|
<header contentId="org.eclipse.core.runtime.xml" postBlankLines="0" lineFormat="false" preserveFirstLine="true">
|
||||||
|
<beginLine><![CDATA[<!--]]></beginLine>
|
||||||
|
<linePrefix><![CDATA[ ]]></linePrefix>
|
||||||
|
<endLine><![CDATA[-->]]></endLine>
|
||||||
|
<firstLinePattern><![CDATA[<\?xml version=.*\?>]]></firstLinePattern>
|
||||||
|
</header>
|
||||||
|
<header contentId="org.eclipse.pde.simpleCheatSheet" excluded="true" />
|
||||||
|
<header contentId="org.eclipse.jst.j2ee.webDD" excluded="true" />
|
||||||
|
<header contentId="org.eclipse.pde.compositeCheatSheet" excluded="true" />
|
||||||
|
<header contentId="org.eclipse.pde.schema" excluded="true" />
|
||||||
|
<header contentId="org.eclipse.pde.tocFile" excluded="true" />
|
||||||
|
<header contentId="org.eclipse.jst.j2ee.earDD" excluded="true" />
|
||||||
|
<header contentId="org.eclipse.pde.ctxHelpFile" excluded="true" />
|
||||||
|
<header contentId="org.eclipse.jdt.core.JARManifest" excluded="true" />
|
||||||
|
<header contentId="org.eclipse.pde.categoryManifest" excluded="true" />
|
||||||
|
<header contentId="org.eclipse.pde.buildProperties" excluded="true" />
|
||||||
|
<header contentId="org.eclipse.ui.views.log.log" excluded="true" />
|
||||||
|
<header contentId="org.eclipse.pde.siteManifest" excluded="true" />
|
||||||
|
<header contentId="org.eclipse.pde.targetFile" excluded="true" />
|
||||||
|
<header contentId="org.eclipse.pde.bundleManifest" excluded="true" />
|
||||||
|
<header contentId="org.eclipse.jst.j2ee.connectorDD" excluded="true" />
|
||||||
|
<header contentId="org.eclipse.pde.pluginManifest" excluded="true" />
|
||||||
|
<header contentId="org.eclipse.core.runtime.text" postBlankLines="0" lineFormat="true" preserveFirstLine="false">
|
||||||
|
<beginLine><![CDATA[#-------------------------------------------------------------------------------]]></beginLine>
|
||||||
|
<linePrefix><![CDATA[# ]]></linePrefix>
|
||||||
|
<endLine><![CDATA[#-------------------------------------------------------------------------------]]></endLine>
|
||||||
|
</header>
|
||||||
|
<header contentId="org.eclipse.jst.j2ee.ejbDD" excluded="true" />
|
||||||
|
<header contentId="org.eclipse.pde.featureManifest" excluded="true" />
|
||||||
|
<header contentId="org.eclipse.jdt.core.javaSource" postBlankLines="0" lineFormat="false" preserveFirstLine="false">
|
||||||
|
<beginLine><![CDATA[/**]]></beginLine>
|
||||||
|
<linePrefix><![CDATA[ * ]]></linePrefix>
|
||||||
|
<endLine><![CDATA[ */]]></endLine>
|
||||||
|
</header>
|
||||||
|
</project>
|
|
@ -1,7 +1,21 @@
|
||||||
/**
|
/**
|
||||||
* XidDemo
|
* Copyright (C) 2006-2014 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 <http://www.gnu.org/licenses/>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import org.apache.log4j.Level;
|
import org.apache.log4j.Level;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
|
@ -1,176 +1,194 @@
|
||||||
package fr.devinsy.xidyn.data;
|
/**
|
||||||
|
* Copyright (C) 2006-2014 Christian Pierre MOMON
|
||||||
import java.io.Serializable;
|
*
|
||||||
|
* This file is part of Xidyn.
|
||||||
/**
|
*
|
||||||
* IdData class is used to hold application data and the business logic that
|
* Xidyn is free software: you can redistribute it and/or modify
|
||||||
* operates on the data.
|
* it under the terms of the GNU General Public License as published by
|
||||||
*
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* The only requirement of a IdData class is that it must implement a display
|
* (at your option) any later version.
|
||||||
* method. The display method must return a text representation of the data,
|
*
|
||||||
* suitable for display in a web page.
|
* Xidyn is distributed in the hope that it will be useful,
|
||||||
*
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* XID provides a User Input IdData, Text IdData and ... application may also
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* implement it's own IdData classes.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
*/
|
* You should have received a copy of the GNU General Public License
|
||||||
public class SimpleTagData implements Serializable, TagData
|
* along with Xidyn. If not, see <http://www.gnu.org/licenses/>
|
||||||
{
|
*/
|
||||||
public enum IterationStrategy
|
package fr.devinsy.xidyn.data;
|
||||||
{
|
|
||||||
ONLY_FIRST_ROW, ONLY_FIRST_TWO_ROWS, ONLY_ROWS_WITH_ID, ONLY_ROWS_WITHOUT_ID, ALL_ROWS
|
import java.io.Serializable;
|
||||||
}
|
|
||||||
|
/**
|
||||||
public enum MODE
|
* IdData class is used to hold application data and the business logic that
|
||||||
{
|
* operates on the data.
|
||||||
REPLACE, APPEND, IGNORE
|
*
|
||||||
}
|
* The only requirement of a IdData class is that it must implement a display
|
||||||
|
* method. The display method must return a text representation of the data,
|
||||||
private static final long serialVersionUID = 8976245034682639923L;;
|
* suitable for display in a web page.
|
||||||
|
*
|
||||||
private IterationStrategy iterationStrategy;
|
* XID provides a User Input IdData, Text IdData and ... application may also
|
||||||
private TagAttributes attributes;
|
* implement it's own IdData classes.
|
||||||
private boolean excludeSection;
|
*
|
||||||
private MODE displayMode = MODE.REPLACE;
|
*/
|
||||||
private String content;
|
public class SimpleTagData implements Serializable, TagData
|
||||||
|
{
|
||||||
/**
|
public enum IterationStrategy
|
||||||
*
|
{
|
||||||
*/
|
ONLY_FIRST_ROW, ONLY_FIRST_TWO_ROWS, ONLY_ROWS_WITH_ID, ONLY_ROWS_WITHOUT_ID, ALL_ROWS
|
||||||
public SimpleTagData()
|
}
|
||||||
{
|
|
||||||
this.attributes = null;
|
public enum MODE
|
||||||
this.excludeSection = false;
|
{
|
||||||
this.displayMode = MODE.REPLACE;
|
REPLACE, APPEND, IGNORE
|
||||||
this.content = null;
|
}
|
||||||
this.iterationStrategy = IterationStrategy.ALL_ROWS;
|
|
||||||
}
|
private static final long serialVersionUID = 8976245034682639923L;;
|
||||||
|
|
||||||
/**
|
private IterationStrategy iterationStrategy;
|
||||||
*
|
private TagAttributes attributes;
|
||||||
*/
|
private boolean excludeSection;
|
||||||
public SimpleTagData(final String text)
|
private MODE displayMode = MODE.REPLACE;
|
||||||
{
|
private String content;
|
||||||
this.attributes = null;
|
|
||||||
this.excludeSection = false;
|
/**
|
||||||
this.displayMode = MODE.REPLACE;
|
*
|
||||||
this.content = text;
|
*/
|
||||||
this.iterationStrategy = IterationStrategy.ALL_ROWS;
|
public SimpleTagData()
|
||||||
}
|
{
|
||||||
|
this.attributes = null;
|
||||||
/**
|
this.excludeSection = false;
|
||||||
*
|
this.displayMode = MODE.REPLACE;
|
||||||
*/
|
this.content = null;
|
||||||
public void appendContent(final String text)
|
this.iterationStrategy = IterationStrategy.ALL_ROWS;
|
||||||
{
|
}
|
||||||
if (this.content == null)
|
|
||||||
{
|
/**
|
||||||
this.content = text;
|
*
|
||||||
}
|
*/
|
||||||
else
|
public SimpleTagData(final String text)
|
||||||
{
|
{
|
||||||
this.content += text;
|
this.attributes = null;
|
||||||
}
|
this.excludeSection = false;
|
||||||
}
|
this.displayMode = MODE.REPLACE;
|
||||||
|
this.content = text;
|
||||||
/**
|
this.iterationStrategy = IterationStrategy.ALL_ROWS;
|
||||||
*
|
}
|
||||||
*/
|
|
||||||
public TagAttributes attributes()
|
/**
|
||||||
{
|
*
|
||||||
TagAttributes result;
|
*/
|
||||||
|
public void appendContent(final String text)
|
||||||
if (this.attributes == null)
|
{
|
||||||
{
|
if (this.content == null)
|
||||||
this.attributes = new TagAttributes();
|
{
|
||||||
}
|
this.content = text;
|
||||||
|
}
|
||||||
result = this.attributes;
|
else
|
||||||
|
{
|
||||||
//
|
this.content += text;
|
||||||
return (result);
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public String display()
|
public TagAttributes attributes()
|
||||||
{
|
{
|
||||||
String result;
|
TagAttributes result;
|
||||||
|
|
||||||
result = this.content;
|
if (this.attributes == null)
|
||||||
|
{
|
||||||
//
|
this.attributes = new TagAttributes();
|
||||||
return (result);
|
}
|
||||||
}
|
|
||||||
|
result = this.attributes;
|
||||||
/**
|
|
||||||
*
|
//
|
||||||
*/
|
return (result);
|
||||||
public MODE displayMode()
|
}
|
||||||
{
|
|
||||||
MODE result;
|
/**
|
||||||
|
*
|
||||||
result = this.displayMode;
|
*/
|
||||||
|
public String display()
|
||||||
return (result);
|
{
|
||||||
}
|
String result;
|
||||||
|
|
||||||
/**
|
result = this.content;
|
||||||
*
|
|
||||||
*/
|
//
|
||||||
public boolean excludeSection()
|
return (result);
|
||||||
{
|
}
|
||||||
boolean result;
|
|
||||||
|
/**
|
||||||
result = excludeSection;
|
*
|
||||||
|
*/
|
||||||
//
|
public MODE displayMode()
|
||||||
return (result);
|
{
|
||||||
}
|
MODE result;
|
||||||
|
|
||||||
/**
|
result = this.displayMode;
|
||||||
*
|
|
||||||
*/
|
return (result);
|
||||||
public IterationStrategy iterationStrategy()
|
}
|
||||||
{
|
|
||||||
IterationStrategy result;
|
/**
|
||||||
|
*
|
||||||
result = this.iterationStrategy;
|
*/
|
||||||
|
public boolean excludeSection()
|
||||||
//
|
{
|
||||||
return (result);
|
boolean result;
|
||||||
}
|
|
||||||
|
result = this.excludeSection;
|
||||||
/**
|
|
||||||
*
|
//
|
||||||
*/
|
return (result);
|
||||||
public void setContent(final String text)
|
}
|
||||||
{
|
|
||||||
this.content = text;
|
/**
|
||||||
}
|
*
|
||||||
|
*/
|
||||||
/**
|
public IterationStrategy iterationStrategy()
|
||||||
*
|
{
|
||||||
*/
|
IterationStrategy result;
|
||||||
public void setDisplayMode(final MODE displayMode)
|
|
||||||
{
|
result = this.iterationStrategy;
|
||||||
this.displayMode = displayMode;
|
|
||||||
}
|
//
|
||||||
|
return (result);
|
||||||
/**
|
}
|
||||||
*
|
|
||||||
*/
|
/**
|
||||||
public void setExcludeSection(final boolean excludeSection)
|
*
|
||||||
{
|
*/
|
||||||
this.excludeSection = excludeSection;
|
public void setContent(final String text)
|
||||||
}
|
{
|
||||||
|
this.content = text;
|
||||||
/**
|
}
|
||||||
*
|
|
||||||
*/
|
/**
|
||||||
public void setIterationStrategy(final IterationStrategy strategy)
|
*
|
||||||
{
|
*/
|
||||||
this.iterationStrategy = strategy;
|
public void setDisplayMode(final MODE displayMode)
|
||||||
}
|
{
|
||||||
}
|
this.displayMode = displayMode;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setExcludeSection(final boolean excludeSection)
|
||||||
|
{
|
||||||
|
this.excludeSection = excludeSection;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setIterationStrategy(final IterationStrategy strategy)
|
||||||
|
{
|
||||||
|
this.iterationStrategy = strategy;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2006-2014 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 <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
package fr.devinsy.xidyn.data;
|
package fr.devinsy.xidyn.data;
|
||||||
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2006-2014 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 <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
package fr.devinsy.xidyn.data;
|
package fr.devinsy.xidyn.data;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2006-2014 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 <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
package fr.devinsy.xidyn.data;
|
package fr.devinsy.xidyn.data;
|
||||||
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2006-2014 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 <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
package fr.devinsy.xidyn.data;
|
package fr.devinsy.xidyn.data;
|
||||||
|
|
||||||
import java.util.Vector;
|
import java.util.Vector;
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2006-2014 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 <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
package fr.devinsy.xidyn.data;
|
package fr.devinsy.xidyn.data;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2006-2014 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 <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
package fr.devinsy.xidyn.presenters;
|
package fr.devinsy.xidyn.presenters;
|
||||||
|
|
||||||
import java.io.StringWriter;
|
import java.io.StringWriter;
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2006-2014 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 <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
package fr.devinsy.xidyn.presenters;
|
package fr.devinsy.xidyn.presenters;
|
||||||
|
|
||||||
import java.io.StringWriter;
|
import java.io.StringWriter;
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2006-2014 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 <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
package fr.devinsy.xidyn.presenters;
|
package fr.devinsy.xidyn.presenters;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
@ -228,7 +246,7 @@ public class FilePresenter extends StringPresenter
|
||||||
logger.error(errorMessage);
|
logger.error(errorMessage);
|
||||||
throw new NullPointerException(errorMessage);
|
throw new NullPointerException(errorMessage);
|
||||||
}
|
}
|
||||||
else if (!source.exists())
|
else if (!this.source.exists())
|
||||||
{
|
{
|
||||||
String errorMessage = "source file defined but not found (" + this.sourceFilePathname + ")";
|
String errorMessage = "source file defined but not found (" + this.sourceFilePathname + ")";
|
||||||
logger.error(errorMessage);
|
logger.error(errorMessage);
|
||||||
|
|
|
@ -1,9 +1,21 @@
|
||||||
/*
|
/**
|
||||||
* Copyright 2009 Christian Momon, All rights reserved.
|
* Copyright (C) 2006-2014 Christian Pierre MOMON
|
||||||
* This file is free software under the terms of the GNU Library General Public License
|
*
|
||||||
* as published by the Free Software Foundation version 2 or any later version.
|
* 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 <http://www.gnu.org/licenses/>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package fr.devinsy.xidyn.presenters;
|
package fr.devinsy.xidyn.presenters;
|
||||||
|
|
||||||
import java.util.Vector;
|
import java.util.Vector;
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2006-2014 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 <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
package fr.devinsy.xidyn.presenters;
|
package fr.devinsy.xidyn.presenters;
|
||||||
|
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2006-2014 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 <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
package fr.devinsy.xidyn.presenters;
|
package fr.devinsy.xidyn.presenters;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2006-2014 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 <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
package fr.devinsy.xidyn.presenters;
|
package fr.devinsy.xidyn.presenters;
|
||||||
|
|
||||||
import fr.devinsy.xidyn.data.TagDataManager;
|
import fr.devinsy.xidyn.data.TagDataManager;
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2006-2014 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 <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
package fr.devinsy.xidyn.presenters;
|
package fr.devinsy.xidyn.presenters;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2006-2014 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 <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
package fr.devinsy.xidyn.presenters;
|
package fr.devinsy.xidyn.presenters;
|
||||||
|
|
||||||
import java.io.StringWriter;
|
import java.io.StringWriter;
|
||||||
|
@ -76,7 +94,7 @@ public class StringPresenter implements Presenter
|
||||||
|
|
||||||
if (this.doctype == null)
|
if (this.doctype == null)
|
||||||
{
|
{
|
||||||
StringBuffer buffer = new StringBuffer(source.length() + 100);
|
StringBuffer buffer = new StringBuffer(this.source.length() + 100);
|
||||||
buffer.append("<html><head></head><body>\n");
|
buffer.append("<html><head></head><body>\n");
|
||||||
buffer.append(this.source);
|
buffer.append(this.source);
|
||||||
buffer.append("</body></html>");
|
buffer.append("</body></html>");
|
||||||
|
@ -109,7 +127,7 @@ public class StringPresenter implements Presenter
|
||||||
htmlCode.write(this.doctype);
|
htmlCode.write(this.doctype);
|
||||||
}
|
}
|
||||||
|
|
||||||
DomPresenterCore.dynamize(htmlCode, dom, data);
|
DomPresenterCore.dynamize(htmlCode, this.dom, data);
|
||||||
StringBuffer htmlTarget = htmlCode.getBuffer();
|
StringBuffer htmlTarget = htmlCode.getBuffer();
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2006-2014 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 <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
package fr.devinsy.xidyn.presenters;
|
package fr.devinsy.xidyn.presenters;
|
||||||
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
|
@ -207,7 +225,7 @@ public class TranslatorPresenter implements Presenter
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
String adaptedSource = FileTools.addBeforeExtension(defaultSource, "-" + language);
|
String adaptedSource = FileTools.addBeforeExtension(this.defaultSource, "-" + language);
|
||||||
result = PresenterFactory.get(adaptedSource);
|
result = PresenterFactory.get(adaptedSource);
|
||||||
|
|
||||||
if (result.isAvailable())
|
if (result.isAvailable())
|
||||||
|
@ -216,7 +234,7 @@ public class TranslatorPresenter implements Presenter
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
adaptedSource = FileTools.addBeforeExtension(defaultSource, "_" + language);
|
adaptedSource = FileTools.addBeforeExtension(this.defaultSource, "_" + language);
|
||||||
|
|
||||||
if (result.isAvailable())
|
if (result.isAvailable())
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2006-2014 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 <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
package fr.devinsy.xidyn.presenters;
|
package fr.devinsy.xidyn.presenters;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
@ -125,7 +143,7 @@ public class URLPresenter extends StringPresenter
|
||||||
{
|
{
|
||||||
result = false;
|
result = false;
|
||||||
}
|
}
|
||||||
else if (sourcePathname.startsWith("/"))
|
else if (this.sourcePathname.startsWith("/"))
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* In case of Jar resources, if resource does not exist then
|
* In case of Jar resources, if resource does not exist then
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2006-2014 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 <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
package fr.devinsy.xidyn.utils;
|
package fr.devinsy.xidyn.utils;
|
||||||
|
|
||||||
import java.util.Vector;
|
import java.util.Vector;
|
||||||
|
@ -22,10 +40,10 @@ public class ParserErrorHandler implements ErrorHandler
|
||||||
|
|
||||||
public ParserErrorHandler()
|
public ParserErrorHandler()
|
||||||
{
|
{
|
||||||
fatalErrorsCount = 0;
|
this.fatalErrorsCount = 0;
|
||||||
errorsCount = 0;
|
this.errorsCount = 0;
|
||||||
warningCount = 0;
|
this.warningCount = 0;
|
||||||
messages = new Vector<String>();
|
this.messages = new Vector<String>();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -130,7 +148,7 @@ public class ParserErrorHandler implements ErrorHandler
|
||||||
|
|
||||||
result = new StringBuffer();
|
result = new StringBuffer();
|
||||||
|
|
||||||
for (String message : messages)
|
for (String message : this.messages)
|
||||||
{
|
{
|
||||||
result.append(message);
|
result.append(message);
|
||||||
result.append('\n');
|
result.append('\n');
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2006-2014 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 <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
package fr.devinsy.xidyn.utils;
|
package fr.devinsy.xidyn.utils;
|
||||||
|
|
||||||
import java.io.BufferedReader;
|
import java.io.BufferedReader;
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2006-2014 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 <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
package fr.devinsy.xidyn.views;
|
package fr.devinsy.xidyn.views;
|
||||||
|
|
||||||
import java.util.Locale;
|
import java.util.Locale;
|
||||||
|
|
|
@ -1,9 +1,28 @@
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2006-2014 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 <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
package fr.devinsy.xidyn.views;
|
package fr.devinsy.xidyn.views;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public interface View {
|
public interface View
|
||||||
|
{
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2006-2014 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 <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
import org.w3c.dom.Document;
|
import org.w3c.dom.Document;
|
||||||
|
|
||||||
import fr.devinsy.xidyn.utils.XidynUtils;
|
import fr.devinsy.xidyn.utils.XidynUtils;
|
||||||
|
|
|
@ -1,7 +1,21 @@
|
||||||
/**
|
/**
|
||||||
* XidTest.
|
* Copyright (C) 2006-2014 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 <http://www.gnu.org/licenses/>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import org.apache.log4j.Level;
|
import org.apache.log4j.Level;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2006-2014 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 <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
package fr.devinsy.xidyn.presenters;
|
package fr.devinsy.xidyn.presenters;
|
||||||
|
|
||||||
import org.apache.log4j.BasicConfigurator;
|
import org.apache.log4j.BasicConfigurator;
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2006-2014 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 <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
package fr.devinsy.xidyn.presenters;
|
package fr.devinsy.xidyn.presenters;
|
||||||
|
|
||||||
import org.apache.log4j.BasicConfigurator;
|
import org.apache.log4j.BasicConfigurator;
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2006-2014 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 <http://www.gnu.org/licenses/>
|
||||||
|
*/
|
||||||
package fr.devinsy.xidyn.utils;
|
package fr.devinsy.xidyn.utils;
|
||||||
|
|
||||||
import org.apache.log4j.BasicConfigurator;
|
import org.apache.log4j.BasicConfigurator;
|
||||||
|
|
Loading…
Reference in a new issue