Skip to content

Commit

Permalink
Mass fix @author tags to not break the JavaDoc tool.
Browse files Browse the repository at this point in the history
  • Loading branch information
gredler committed Mar 20, 2015
1 parent 0c5e548 commit 94a1dc1
Show file tree
Hide file tree
Showing 58 changed files with 79 additions and 61 deletions.
22 changes: 20 additions & 2 deletions src/main/java/uk/org/okapibarcode/OkapiBarcode.java
Original file line number Diff line number Diff line change
@@ -1,16 +1,34 @@
/*
* Copyright 2014-2015 Robin Stuart, Robert Elliott
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package uk.org.okapibarcode;

import uk.org.okapibarcode.gui.OkapiUI;

/**
* Starts the Okapi Barcode UI.
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author Robert Elliott <jakel2006@me.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
* @author <a href="mailto:jakel2006@me.com">Robert Elliott</a>
*/
public class OkapiBarcode {

/**
* Starts the Okapi Barcode UI.
*
* @param args the command line arguments
*/
public static void main(String[] args) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/AddOn.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/**
* Encode Add-On barcodes from UPC/EAN
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
*/
public class AddOn{
private String content;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* Implements Australia Post 4-State Barcode
* Specified at http://auspost.com.au/media/documents/a-guide-to-printing-the-4state-barcode-v31-mar2012.pdf
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
* @version 0.1
*/
public class AustraliaPost extends Symbol{
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/AztecCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* Implements Aztec Code bar code symbology
* According to ISO/IEC 24778:2008
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
* @version 0.2
*/
public class AztecCode extends Symbol {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/AztecRune.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* Implements Aztec Runes bar code symbology
* According to ISO/IEC 24778:2008 Annex A
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
* @version 0.1
*/
public class AztecRune extends Symbol {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/Barcode.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/**
* Main calling class for all barcode symbologies
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
* @version 0.5
*/
public class Barcode {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/ChannelCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* Implements Channel Code
* According to ANSI/AIM BC12-1998
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
* @version 0.1
*/
public class ChannelCode extends Symbol {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/Codabar.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* Implements Codabar
* According to BS EN 798:1996
*
* @author Robert Elliott <jakel2116@me.com>
* @author <a href="mailto:jakel2006@me.com">Robert Elliott</a>
* @version 0.2
*/
public class Codabar extends Symbol {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/CodablockF.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* Implements Codablock-F
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
*/
public class CodablockF extends Symbol {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/Code11.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* Implements Code 11 bar code symbology
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
* @version 0.2
*/
public class Code11 extends Symbol {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/Code128.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* Implements Code 128 bar code symbology
* According to ISO/IEC 15417:2007
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
* @version 0.3
*/

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/Code16k.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* Implements Code 16K symbology
* According to BS EN 12323:2005
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
* @version 0.1
*/
public class Code16k extends Symbol {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/Code2Of5.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

/**
*
* @author Robert Elliott <jakel2006@me.com>
* @author <a href="mailto:jakel2006@me.com">Robert Elliott</a>
*/
public class Code2Of5 extends Symbol {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/Code32.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* Implements Code 32 (AKA Italian Pharmacode)
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
* @version 0.1
*/
public class Code32 extends Symbol {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/Code3Of9.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* Implements Code 39 bar code symbology
* According to ISO/IEC 16388:2007
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
*/
public class Code3Of9 extends Symbol {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

/**
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
*/
public class Code3Of9Extended extends Symbol {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/Code49.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* Implements Code 49
* According to ANSI/AIM-BC6-2000
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
* @version 0.1
*/
public class Code49 extends Symbol {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/Code93.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

/**
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
*/
public class Code93 extends Symbol {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/CodeOne.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* Implements Code 1
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
*/
public class CodeOne extends Symbol {
private final int[] c40_shift = {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/Composite.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* Implements composite symbology According to ISO/IEC 24723:2006
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
* @version 0.1
*/
public class Composite extends Symbol {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/DataBar14.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* Implements GS1 DataBar-14
* According to ISO/IEC 24724:2006
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
* @version 0.1
*/
public class DataBar14 extends Symbol {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* Implements Data Bar Expanded (aka RSS Expanded)
* According to ISO/IEC 24724:2006
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
*/
public class DataBarExpanded extends Symbol {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* Implements GS-1 DataBar Limited (aka RSS Limited)
* According to ISO/IEC 24724:2006
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
* @version 0.1
*/
public class DataBarLimited extends Symbol {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/DataMatrix.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* Implements Data Matrix ECC 200 bar code symbology
* According to ISO/IEC 16022:2006
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
* @version 0.2
*/
public class DataMatrix extends Symbol {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/Ean.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* Implements EAN bar code symbology
* According to BS EN 797:1996
*
* @author Robert Elliott <jakel2006@me.com>
* @author <a href="mailto:jakel2006@me.com">Robert Elliott</a>
* @version 0.2
*/
public class Ean extends Symbol {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/GridMatrix.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* Implements Grid Matrix bar code symbology
* According to AIMD014
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
*/
public class GridMatrix extends Symbol {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/Hexagon.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* Calculate a set of points to make a hexagon
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
*/
public class Hexagon {
public double centreX;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/JapanPost.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import java.util.Locale;
/**
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
*/
public class JapanPost extends Symbol {
private String[] JapanTable = {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/KixCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/**
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
*/
public class KixCode extends Symbol {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/KoreaPost.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

/**
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
*/
public class KoreaPost extends Symbol {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/Logmars.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

/**
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
*/
public class Logmars extends Symbol {
private String[] Code39LM = {
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/uk/org/okapibarcode/backend/MaxiCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
/**
* Implements MaxiCode according to ISO 16023:2000.
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author Daniel Gredler <daniel.gredler@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
* @author Daniel Gredler
*/
public class MaxiCode extends Symbol {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/MicroQrCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* Implements Micro QR Code
* According to ISO/IEC 18004:2006
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
*/
public class MicroQrCode extends Symbol {
private static enum qrMode {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/MsiPlessey.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

/**
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
*/
public class MsiPlessey extends Symbol {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/Pdf417.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* Implements PDF417 bar code symbology and MicroPDF417 bar code symbology
* According to ISO/IEC 15438:2006 and ISO/IEC 24728:2006 respectively
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
*/
public class Pdf417 extends Symbol {
private enum pdfEncodingMode {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/PharmaCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

/**
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
*/
public class PharmaCode extends Symbol {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

/**
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
*/
public class PharmaCode2Track extends Symbol {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

/**
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
*/
public class Pharmazentralnummer extends Symbol {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/Postnet.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import java.awt.Rectangle;
/**
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
*/
public class Postnet extends Symbol {
private String[] PNTable = {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/QrCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* Implements QR Code 2005 bar code symbology
* According to ISO/IEC 18004:2006
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
*/
public class QrCode extends Symbol {
private enum qrMode {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/org/okapibarcode/backend/ReedSolomon.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

/**
*
* @author Robin Stuart <rstuart114@gmail.com>
* @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
*/
public class ReedSolomon {
private int logmod;
Expand Down
Loading

0 comments on commit 94a1dc1

Please sign in to comment.