Normalize @author.

This commit is contained in:
Christian P. MOMON 2014-11-09 17:20:49 +01:00
parent 282e396ac0
commit 2876cb65b9
31 changed files with 46 additions and 27 deletions

View file

@ -6,7 +6,7 @@
<classpathentry kind="lib" path="lib/hamcrest-core-1.3.jar"/>
<classpathentry kind="lib" path="lib/junit-4.11.jar" sourcepath="lib/junit-4.11-sources.jar"/>
<classpathentry kind="lib" path="lib/log4j-1.2.17.jar"/>
<classpathentry kind="lib" path="lib/slf4j-api-1.7.5.jar"/>
<classpathentry kind="lib" path="lib/slf4j-api-1.7.5.jar" sourcepath="lib/slf4j-api-1.7.5-sources.jar"/>
<classpathentry kind="lib" path="lib/slf4j-log4j12-1.7.5.jar"/>
<classpathentry kind="lib" path="lib/commons-lang3-3.1.jar" sourcepath="lib/commons-lang3-3.1-sources.jar"/>
<classpathentry kind="lib" path="lib/joda-time-2.3.jar"/>

View file

@ -21,6 +21,7 @@ package fr.devinsy.util;
/**
* This class defines a content file.
*
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class DataFile
{

View file

@ -23,6 +23,7 @@ import java.util.ArrayList;
/**
* This class is a collection of DataFile objects whit some specific methods.
*
* @author Christian Pierre MOMON
*/
public class DataFiles extends ArrayList<DataFile>
{

View file

@ -27,6 +27,7 @@ import fr.devinsy.util.StringConcatenator;
* We must use the isOver method on Gobblers because with short tasks the
* waitFor ends before the Gobbler read.
*
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class CmdExec
{

View file

@ -28,6 +28,7 @@ import org.slf4j.LoggerFactory;
/**
*
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class StreamGobbler extends Thread
{

View file

@ -28,6 +28,8 @@ import org.slf4j.LoggerFactory;
/**
* @deprecated
*
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
@Deprecated
public class Wrapper

View file

@ -25,7 +25,7 @@ import fr.devinsy.util.StringList;
/**
*
* @author christian.momon@devinsy.fr
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class RSSCache
{

View file

@ -22,7 +22,7 @@ import org.joda.time.DateTime;
/**
*
* @author christian.momon@devinsy.fr
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class RSSElement
{

View file

@ -29,7 +29,7 @@ import fr.devinsy.util.xml.XMLWriter;
/**
*
* @author christian.momon@devinsy.fr
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class RSSWriter
{

View file

@ -24,7 +24,8 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
*
*
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class CachedFile
{

View file

@ -21,7 +21,8 @@ package fr.devinsy.util.unix;
import java.util.Vector;
/**
*
*
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class EtcGroupFile extends CachedFile
{

View file

@ -26,7 +26,8 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
*
*
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class EtcGroupFileReader
{

View file

@ -22,7 +22,8 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
*
*
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class EtcPasswdFile extends CachedFile
{

View file

@ -26,7 +26,8 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
*
*
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class EtcPasswdFileReader
{

View file

@ -21,7 +21,8 @@ package fr.devinsy.util.unix;
import java.util.Vector;
/**
*
*
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class Group
{

View file

@ -22,7 +22,8 @@ import java.util.Iterator;
import java.util.Vector;
/**
*
*
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class Groups extends Vector<Group>
{

View file

@ -30,7 +30,8 @@ import fr.devinsy.util.unix.acl.Acl;
import fr.devinsy.util.unix.acl.AclManager;
/**
*
*
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class Unix
{

View file

@ -19,7 +19,8 @@
package fr.devinsy.util.unix;
/**
*
*
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class User
{

View file

@ -22,7 +22,8 @@ import java.util.Iterator;
import java.util.Vector;
/**
*
*
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class Users extends Vector<User>
{

View file

@ -19,7 +19,8 @@
package fr.devinsy.util.unix.acl;
/**
*
*
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class Acl
{

View file

@ -22,7 +22,8 @@ import java.util.Iterator;
import java.util.Vector;
/**
*
*
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class AclEntries extends Vector<AclEntry>
{

View file

@ -19,7 +19,8 @@
package fr.devinsy.util.unix.acl;
/**
*
*
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class AclEntry
{

View file

@ -30,7 +30,8 @@ import fr.devinsy.util.cmdexec.CmdExec;
import fr.devinsy.util.unix.Unix;
/**
*
*
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class AclManager
{

View file

@ -28,8 +28,7 @@ import javax.xml.stream.events.Attribute;
/**
*
* @author christian.momon@devinsy.fr
*
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class XMLAttributes extends HashMap<String, Attribute> implements Iterable<Attribute>
{

View file

@ -20,7 +20,7 @@ package fr.devinsy.util.xml;
/**
*
* @author christian.momon@devinsy.fr.
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class XMLBadFormatException extends Exception
{

View file

@ -41,7 +41,7 @@ import fr.devinsy.util.xml.XMLTag.TagType;
/**
*
@author christian.momon@devinsy.fr
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class XMLReader
{

View file

@ -22,7 +22,7 @@ import javax.xml.namespace.QName;
/**
*
@author christian.momon@devinsy.fr
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class XMLTag
{

View file

@ -41,7 +41,7 @@ import org.xml.sax.SAXException;
/**
*
* @author christian.momon@devinsy.fr
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class XMLTools
{

View file

@ -32,7 +32,7 @@ import org.apache.commons.lang3.ArrayUtils;
/**
*
* @author christian.momon@devinsy.fr
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class XMLWriter
{

View file

@ -29,7 +29,7 @@ import javax.xml.stream.XMLStreamException;
/**
*
* @author christian.momon@devinsy.fr
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class XMLZipReader extends XMLReader
{

View file

@ -32,7 +32,7 @@ import fr.devinsy.util.FileTools;
/**
*
* @author christian.momon@devinsy.fr
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class XMLZipWriter extends XMLWriter
{