[dna-commits] DNA SVN: r1480 - in trunk/extensions/dna-sequencer-text/src: test/java/org/jboss/dna/sequencer/text and 1 other directory.

dna-commits at lists.jboss.org dna-commits at lists.jboss.org
Tue Dec 22 21:22:00 EST 2009


Author: bcarothers
Date: 2009-12-22 21:21:59 -0500 (Tue, 22 Dec 2009)
New Revision: 1480

Modified:
   trunk/extensions/dna-sequencer-text/src/main/java/org/jboss/dna/sequencer/text/AbstractTextSequencer.java
   trunk/extensions/dna-sequencer-text/src/main/java/org/jboss/dna/sequencer/text/DefaultRowFactory.java
   trunk/extensions/dna-sequencer-text/src/main/java/org/jboss/dna/sequencer/text/DelimitedTextSequencer.java
   trunk/extensions/dna-sequencer-text/src/main/java/org/jboss/dna/sequencer/text/FixedWidthTextSequencer.java
   trunk/extensions/dna-sequencer-text/src/main/java/org/jboss/dna/sequencer/text/RowFactory.java
   trunk/extensions/dna-sequencer-text/src/test/java/org/jboss/dna/sequencer/text/DelimitedTextSequencerTest.java
   trunk/extensions/dna-sequencer-text/src/test/java/org/jboss/dna/sequencer/text/FixedWidthTextSequencerTest.java
Log:
DNA-105  Sequence content from delimited text files

Added some missing copyright headers

Modified: trunk/extensions/dna-sequencer-text/src/main/java/org/jboss/dna/sequencer/text/AbstractTextSequencer.java
===================================================================
--- trunk/extensions/dna-sequencer-text/src/main/java/org/jboss/dna/sequencer/text/AbstractTextSequencer.java	2009-12-22 23:08:20 UTC (rev 1479)
+++ trunk/extensions/dna-sequencer-text/src/main/java/org/jboss/dna/sequencer/text/AbstractTextSequencer.java	2009-12-23 02:21:59 UTC (rev 1480)
@@ -1,3 +1,26 @@
+/*
+ * JBoss DNA (http://www.jboss.org/dna)
+ * See the COPYRIGHT.txt file distributed with this work for information
+ * regarding copyright ownership.  Some portions may be licensed
+ * to Red Hat, Inc. under one or more contributor license agreements.
+ * See the AUTHORS.txt file in the distribution for a full listing of 
+ * individual contributors.
+ *
+ * JBoss DNA is free software. Unless otherwise indicated, all code in JBoss DNA
+ * is licensed to you under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ * 
+ * JBoss DNA 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 this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
 package org.jboss.dna.sequencer.text;
 
 import java.io.BufferedReader;

Modified: trunk/extensions/dna-sequencer-text/src/main/java/org/jboss/dna/sequencer/text/DefaultRowFactory.java
===================================================================
--- trunk/extensions/dna-sequencer-text/src/main/java/org/jboss/dna/sequencer/text/DefaultRowFactory.java	2009-12-22 23:08:20 UTC (rev 1479)
+++ trunk/extensions/dna-sequencer-text/src/main/java/org/jboss/dna/sequencer/text/DefaultRowFactory.java	2009-12-23 02:21:59 UTC (rev 1480)
@@ -1,3 +1,26 @@
+/*
+ * JBoss DNA (http://www.jboss.org/dna)
+ * See the COPYRIGHT.txt file distributed with this work for information
+ * regarding copyright ownership.  Some portions may be licensed
+ * to Red Hat, Inc. under one or more contributor license agreements.
+ * See the AUTHORS.txt file in the distribution for a full listing of 
+ * individual contributors.
+ *
+ * JBoss DNA is free software. Unless otherwise indicated, all code in JBoss DNA
+ * is licensed to you under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ * 
+ * JBoss DNA 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 this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
 package org.jboss.dna.sequencer.text;
 
 import net.jcip.annotations.NotThreadSafe;

Modified: trunk/extensions/dna-sequencer-text/src/main/java/org/jboss/dna/sequencer/text/DelimitedTextSequencer.java
===================================================================
--- trunk/extensions/dna-sequencer-text/src/main/java/org/jboss/dna/sequencer/text/DelimitedTextSequencer.java	2009-12-22 23:08:20 UTC (rev 1479)
+++ trunk/extensions/dna-sequencer-text/src/main/java/org/jboss/dna/sequencer/text/DelimitedTextSequencer.java	2009-12-23 02:21:59 UTC (rev 1480)
@@ -1,3 +1,26 @@
+/*
+ * JBoss DNA (http://www.jboss.org/dna)
+ * See the COPYRIGHT.txt file distributed with this work for information
+ * regarding copyright ownership.  Some portions may be licensed
+ * to Red Hat, Inc. under one or more contributor license agreements.
+ * See the AUTHORS.txt file in the distribution for a full listing of 
+ * individual contributors.
+ *
+ * JBoss DNA is free software. Unless otherwise indicated, all code in JBoss DNA
+ * is licensed to you under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ * 
+ * JBoss DNA 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 this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
 package org.jboss.dna.sequencer.text;
 
 import java.util.regex.Pattern;

Modified: trunk/extensions/dna-sequencer-text/src/main/java/org/jboss/dna/sequencer/text/FixedWidthTextSequencer.java
===================================================================
--- trunk/extensions/dna-sequencer-text/src/main/java/org/jboss/dna/sequencer/text/FixedWidthTextSequencer.java	2009-12-22 23:08:20 UTC (rev 1479)
+++ trunk/extensions/dna-sequencer-text/src/main/java/org/jboss/dna/sequencer/text/FixedWidthTextSequencer.java	2009-12-23 02:21:59 UTC (rev 1480)
@@ -1,3 +1,26 @@
+/*
+ * JBoss DNA (http://www.jboss.org/dna)
+ * See the COPYRIGHT.txt file distributed with this work for information
+ * regarding copyright ownership.  Some portions may be licensed
+ * to Red Hat, Inc. under one or more contributor license agreements.
+ * See the AUTHORS.txt file in the distribution for a full listing of 
+ * individual contributors.
+ *
+ * JBoss DNA is free software. Unless otherwise indicated, all code in JBoss DNA
+ * is licensed to you under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ * 
+ * JBoss DNA 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 this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
 package org.jboss.dna.sequencer.text;
 
 import java.util.Arrays;

Modified: trunk/extensions/dna-sequencer-text/src/main/java/org/jboss/dna/sequencer/text/RowFactory.java
===================================================================
--- trunk/extensions/dna-sequencer-text/src/main/java/org/jboss/dna/sequencer/text/RowFactory.java	2009-12-22 23:08:20 UTC (rev 1479)
+++ trunk/extensions/dna-sequencer-text/src/main/java/org/jboss/dna/sequencer/text/RowFactory.java	2009-12-23 02:21:59 UTC (rev 1480)
@@ -1,3 +1,26 @@
+/*
+ * JBoss DNA (http://www.jboss.org/dna)
+ * See the COPYRIGHT.txt file distributed with this work for information
+ * regarding copyright ownership.  Some portions may be licensed
+ * to Red Hat, Inc. under one or more contributor license agreements.
+ * See the AUTHORS.txt file in the distribution for a full listing of 
+ * individual contributors.
+ *
+ * JBoss DNA is free software. Unless otherwise indicated, all code in JBoss DNA
+ * is licensed to you under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ * 
+ * JBoss DNA 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 this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
 package org.jboss.dna.sequencer.text;
 
 import net.jcip.annotations.NotThreadSafe;

Modified: trunk/extensions/dna-sequencer-text/src/test/java/org/jboss/dna/sequencer/text/DelimitedTextSequencerTest.java
===================================================================
--- trunk/extensions/dna-sequencer-text/src/test/java/org/jboss/dna/sequencer/text/DelimitedTextSequencerTest.java	2009-12-22 23:08:20 UTC (rev 1479)
+++ trunk/extensions/dna-sequencer-text/src/test/java/org/jboss/dna/sequencer/text/DelimitedTextSequencerTest.java	2009-12-23 02:21:59 UTC (rev 1480)
@@ -1,3 +1,26 @@
+/*
+ * JBoss DNA (http://www.jboss.org/dna)
+ * See the COPYRIGHT.txt file distributed with this work for information
+ * regarding copyright ownership.  Some portions may be licensed
+ * to Red Hat, Inc. under one or more contributor license agreements.
+ * See the AUTHORS.txt file in the distribution for a full listing of 
+ * individual contributors.
+ *
+ * JBoss DNA is free software. Unless otherwise indicated, all code in JBoss DNA
+ * is licensed to you under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ * 
+ * JBoss DNA 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 this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
 package org.jboss.dna.sequencer.text;
 
 import static org.hamcrest.core.Is.is;

Modified: trunk/extensions/dna-sequencer-text/src/test/java/org/jboss/dna/sequencer/text/FixedWidthTextSequencerTest.java
===================================================================
--- trunk/extensions/dna-sequencer-text/src/test/java/org/jboss/dna/sequencer/text/FixedWidthTextSequencerTest.java	2009-12-22 23:08:20 UTC (rev 1479)
+++ trunk/extensions/dna-sequencer-text/src/test/java/org/jboss/dna/sequencer/text/FixedWidthTextSequencerTest.java	2009-12-23 02:21:59 UTC (rev 1480)
@@ -1,3 +1,26 @@
+/*
+ * JBoss DNA (http://www.jboss.org/dna)
+ * See the COPYRIGHT.txt file distributed with this work for information
+ * regarding copyright ownership.  Some portions may be licensed
+ * to Red Hat, Inc. under one or more contributor license agreements.
+ * See the AUTHORS.txt file in the distribution for a full listing of 
+ * individual contributors.
+ *
+ * JBoss DNA is free software. Unless otherwise indicated, all code in JBoss DNA
+ * is licensed to you under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ * 
+ * JBoss DNA 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 this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
 package org.jboss.dna.sequencer.text;
 
 import static org.hamcrest.core.Is.is;



More information about the dna-commits mailing list