Made the @author tag consistent in all files

This commit is contained in:
Andras Fuchs 2020-02-06 19:18:55 +01:00
parent ae07f577a4
commit 8010ddd120
141 changed files with 141 additions and 141 deletions

View File

@ -28,7 +28,7 @@ import java.util.Collection;
/**
*
* @author alfons
* @author Alfons Wirtz
*/
public interface CompleteExpansionRoom extends ExpansionRoom
{

View File

@ -27,7 +27,7 @@ import eu.mihosoft.freerouting.geometry.planar.TileShape;
/**
* An object, which can be expanded by the maze expansion algorithm.
*
* @author alfons
* @author Alfons Wirtz
*/
public interface ExpandableObject
{

View File

@ -31,7 +31,7 @@ import java.util.Iterator;
/**
* Layer change expansion object in the maze search algorithm.
*
* @author alfons
* @author Alfons Wirtz
*/
public class ExpansionDrill implements ExpandableObject
{

View File

@ -30,7 +30,7 @@ import eu.mihosoft.freerouting.geometry.planar.TileShape;
/**
*
* @author alfons
* @author Alfons Wirtz
*/
public interface ExpansionRoom
{

View File

@ -28,7 +28,7 @@ import eu.mihosoft.freerouting.datastructures.Observers;
/**
*
* @author alfons
* @author Alfons Wirtz
*/
public interface BoardObservers extends Observers<Item>
{

View File

@ -37,7 +37,7 @@ import eu.mihosoft.freerouting.logger.FRLogger;
/**
* Class describing a board outline.
*
* @author alfons
* @author Alfons Wirtz
*/
public class BoardOutline extends Item implements java.io.Serializable
{

View File

@ -29,7 +29,7 @@ import eu.mihosoft.freerouting.geometry.planar.ConvexShape;
/**
* Information of a clearance violation between 2 items.
*
* @author alfons
* @author Alfons Wirtz
*/
public class ClearanceViolation implements ObjectInfoPanel.Printable
{

View File

@ -29,7 +29,7 @@ import eu.mihosoft.freerouting.designforms.specctra.CoordinateTransform;
/**
* Communication information to host systems or host design formats.
*
* @author alfons
* @author Alfons Wirtz
*/
public class Communication implements java.io.Serializable
{

View File

@ -30,7 +30,7 @@ import eu.mihosoft.freerouting.geometry.planar.Vector;
/**
* Describes areas of the board, where components are not allowed.
*
* @author alfons
* @author Alfons Wirtz
*/
public class ComponentObstacleArea extends ObstacleArea
{

View File

@ -26,7 +26,7 @@ package eu.mihosoft.freerouting.board;
/**
* Sorted fixed states of board items. The strongest fixed states came last.
*
* @author alfons
* @author Alfons Wirtz
*/
public enum FixedState
{

View File

@ -41,7 +41,7 @@ import eu.mihosoft.freerouting.library.Padstack;
/**
* Class with static functions for checking and inserting forced vias.
*
* @author alfons
* @author Alfons Wirtz
*/
public class ForcedViaAlgo
{

View File

@ -26,7 +26,7 @@ package eu.mihosoft.freerouting.board;
/**
* Describes the structure of a board layer.
*
* @author alfons
* @author Alfons Wirtz
*/
public class Layer implements java.io.Serializable
{

View File

@ -26,7 +26,7 @@ package eu.mihosoft.freerouting.board;
/**
* Describes the layer structure of the board.
*
* @author alfons
* @author Alfons Wirtz
*/
public class LayerStructure implements java.io.Serializable
{

View File

@ -28,7 +28,7 @@ package eu.mihosoft.freerouting.board;
* If {@literal >} RELEASE, some features may be used, which are still in experimental state.
* Also warnings for debugging may be printed depending on the test_level.
*
* @author alfons
* @author Alfons Wirtz
*/
public enum TestLevel
{

View File

@ -29,7 +29,7 @@ import eu.mihosoft.freerouting.geometry.planar.Vector;
/**
* Describes Areas on the board, where vias are not allowed.
*
* @author alfons
* @author Alfons Wirtz
*/
public class ViaObstacleArea extends ObstacleArea
{

View File

@ -29,7 +29,7 @@ import eu.mihosoft.freerouting.logger.FRLogger;
* The color intensities for each item type.
* The values are between 0 (invisible) and 1 (full intensity).
*
* @author alfons
* @author Alfons Wirtz
*/
public class ColorIntensityTable implements java.io.Serializable
{

View File

@ -28,7 +28,7 @@ import java.awt.Color;
/**
* Information for drawing an item on the screen.
*
* @author alfons
* @author Alfons Wirtz
*/
public class ItemDrawInfo
{

View File

@ -26,7 +26,7 @@ package eu.mihosoft.freerouting.datastructures;
/**
* Used in the file chooser to filter all files which do not have an extension from the input array.
*
* @author alfons
* @author Alfons Wirtz
*/
public class FileFilter extends javax.swing.filechooser.FileFilter
{

View File

@ -30,7 +30,7 @@ import java.io.OutputStreamWriter;
/**
* Describes legal identifiers together with the character used for string quotes.
*
* @author alfons
* @author Alfons Wirtz
*/
public class IdentifierType
{

View File

@ -28,7 +28,7 @@ import eu.mihosoft.freerouting.logger.FRLogger;
/**
* Handles the indenting of scopes while writing to an output text file.
*
* @author alfons
* @author Alfons Wirtz
*/
public class IndentFileWriter extends java.io.OutputStreamWriter
{

View File

@ -27,7 +27,7 @@ package eu.mihosoft.freerouting.datastructures;
/**
* Interface for stoppable threads.
*
* @author alfons
* @author Alfons Wirtz
*/
public interface Stoppable
{

View File

@ -30,7 +30,7 @@ import eu.mihosoft.freerouting.datastructures.IdentifierType;
/**
* Class for reading and writing circle scopes from dsn-files.
*
* @author alfons
* @author Alfons Wirtz
*/
public class Circle extends Shape
{

View File

@ -29,7 +29,7 @@ import eu.mihosoft.freerouting.logger.FRLogger;
/**
* Handels the placement data of a library component.
*
* @author alfons
* @author Alfons Wirtz
*/
public class Component extends ScopeKeyword
{

View File

@ -30,7 +30,7 @@ import java.util.Map;
/**
* Describes the placement data of a library component
*
* @author alfons
* @author Alfons Wirtz
*/
public class ComponentPlacement
{

View File

@ -31,7 +31,7 @@ import eu.mihosoft.freerouting.logger.FRLogger;
/**
* Class for reading and writing dsn-files.
*
* @author alfons
* @author Alfons Wirtz
*/
public class DsnFile
{

View File

@ -25,7 +25,7 @@ package eu.mihosoft.freerouting.designforms.specctra;
/**
* Enumeration class for keywords of the specctra dsn file format
*
* @author alfons
* @author Alfons Wirtz
*/
public class Keyword
{

View File

@ -30,7 +30,7 @@ import java.util.LinkedList;
/**
* Describes a layer in a Specctra dsn file.
*
* @author alfons
* @author Alfons Wirtz
*/
public class Layer
{

View File

@ -28,7 +28,7 @@ import java.util.Iterator;
/**
* Describes a layer structure read from a dsn file.
*
* @author alfons
* @author Alfons Wirtz
*/
public class LayerStructure
{

View File

@ -36,7 +36,7 @@ import eu.mihosoft.freerouting.logger.FRLogger;
/**
* Class for reading and writing net scopes from dsn-files.
*
* @author alfons
* @author Alfons Wirtz
*/
public class Net
{

View File

@ -31,7 +31,7 @@ import java.util.LinkedList;
/**
* Contains the information of a Specctra Class scope.
*
* @author alfons
* @author Alfons Wirtz
*/
public class NetClass
{

View File

@ -33,7 +33,7 @@ import java.util.Set;
* Describes a list of nets sorted by its names.
* The net number is generated internally.
*
* @author alfons
* @author Alfons Wirtz
*/
public class NetList
{

View File

@ -33,7 +33,7 @@ import eu.mihosoft.freerouting.logger.FRLogger;
/**
* Class for reading and writing package scopes from dsn-files.
*
* @author alfons
* @author Alfons Wirtz
*/
public class Package
{

View File

@ -29,7 +29,7 @@ import eu.mihosoft.freerouting.datastructures.IdentifierType;
/**
* Class for writing path scopes from dsn-files.
*
* @author alfons
* @author Alfons Wirtz
*/
public abstract class Path extends Shape
{

View File

@ -29,7 +29,7 @@ import eu.mihosoft.freerouting.logger.FRLogger;
/**
* Class for reading and writing plane scopes from dsn-files.
*
* @author alfons
* @author Alfons Wirtz
*/
public class Plane extends ScopeKeyword
{

View File

@ -29,7 +29,7 @@ import eu.mihosoft.freerouting.datastructures.IdentifierType;
/**
* Describes a polygon in a Specctra dsn file.
*
* @author alfons
* @author Alfons Wirtz
*/
public class Polygon extends Shape
{

View File

@ -31,7 +31,7 @@ import eu.mihosoft.freerouting.logger.FRLogger;
/**
* Describes a path defined by a sequence of lines (instead of a sequence of corners.
*
* @author alfons
* @author Alfons Wirtz
*/
public class PolylinePath extends Path
{

View File

@ -29,7 +29,7 @@ import java.util.LinkedList;
/**
* Default parameter type used while reading a Specctra dsn-file.
*
* @author alfons
* @author Alfons Wirtz
*/
public class ReadScopeParameter
{

View File

@ -31,7 +31,7 @@ import eu.mihosoft.freerouting.datastructures.IdentifierType;
/**
* Describes a rectangle in a Specctra dsn file.
*
* @author alfons
* @author Alfons Wirtz
*/
public class Rectangle extends Shape
{

View File

@ -28,7 +28,7 @@ import eu.mihosoft.freerouting.logger.FRLogger;
/**
* Class for reading resolution scopes from dsn-files.
*
* @author alfons
* @author Alfons Wirtz
*/
public class Resolution extends ScopeKeyword
{

View File

@ -26,7 +26,7 @@ package eu.mihosoft.freerouting.designforms.specctra;
/**
* Interface for scanner generated by jflex.
*
* @author alfons
* @author Alfons Wirtz
*/
public interface Scanner
{

View File

@ -25,7 +25,7 @@ package eu.mihosoft.freerouting.designforms.specctra;
/**
*
* @author alfons
* @author Alfons Wirtz
*/
import eu.mihosoft.freerouting.logger.FRLogger;

View File

@ -40,7 +40,7 @@ import eu.mihosoft.freerouting.logger.FRLogger;
/**
* Methods to handle a Specctra session file.
*
* @author alfons
* @author Alfons Wirtz
*/
public class SessionFile
{

View File

@ -34,7 +34,7 @@ import eu.mihosoft.freerouting.logger.FRLogger;
/**
* Describes a shape in a Specctra dsn file.
*
* @author alfons
* @author Alfons Wirtz
*/
public abstract class Shape
{

View File

@ -30,7 +30,7 @@ import eu.mihosoft.freerouting.datastructures.IdentifierType;
/**
* Default parameter type used while writing a Specctra dsn-file.
*
* @author alfons
* @author Alfons Wirtz
*/
public class WriteScopeParameter
{

View File

@ -28,7 +28,7 @@ package eu.mihosoft.freerouting.geometry.planar;
/**
* Enum for the eight 45-degree direction starting from right in counterclocksense to down45.
*
* @author alfons
* @author Alfons Wirtz
*/
public enum FortyfiveDegreeDirection
{

View File

@ -27,7 +27,7 @@ import eu.mihosoft.freerouting.rules.ClearanceMatrix;
/**
* A Combo Box with an item for each clearance class of the board.
*
* @author alfons
* @author Alfons Wirtz
*/
public class ComboBoxClearance extends javax.swing.JComboBox
{

View File

@ -26,7 +26,7 @@ package eu.mihosoft.freerouting.gui;
/**
* Interactive Frame to adjust the visibility of the individual board layers
*
* @author alfons
* @author Alfons Wirtz
*/
public class WindowLayerVisibility extends WindowVisibility
{

View File

@ -28,7 +28,7 @@ import eu.mihosoft.freerouting.boardgraphics.ColorIntensityTable.ObjectNames;
/**
* Interactive Frame to adjust the visibility of the individual board items
*
* @author alfons
* @author Alfons Wirtz
*/
public class WindowObjectVisibility extends WindowVisibility
{

View File

@ -38,7 +38,7 @@ import eu.mihosoft.freerouting.board.ClearanceViolation;
/**
* To display the clearance violations between items on the screen.
*
* @author alfons
* @author Alfons Wirtz
*/
public class ClearanceViolations
{

View File

@ -28,7 +28,7 @@ import eu.mihosoft.freerouting.geometry.planar.FloatPoint;
/**
* Class implementing the different functionality in the drag menu
*
* @author alfons
* @author Alfons Wirtz
*/
public class DragMenuState extends MenuState
{

View File

@ -28,7 +28,7 @@ import javax.swing.JLabel;
/**
* Text fields to display messages on the screen.
*
* @author arbeit
* @author Alfons Wirtz
*/
public class ScreenMessages
{

View File

@ -29,7 +29,7 @@ import java.util.Vector;
/**
* Describes a board library of packages and padstacks.
*
* @author alfons
* @author Alfons Wirtz
*/
public class BoardLibrary implements java.io.Serializable
{

View File

@ -33,7 +33,7 @@ import eu.mihosoft.freerouting.logger.FRLogger;
* relative locations of the packege pins,
* and optional other stuff like an outline package keepouts.
*
* @author alfons
* @author Alfons Wirtz
*/
public class Package implements Comparable<Package>, eu.mihosoft.freerouting.board.ObjectInfoPanel.Printable, java.io.Serializable
{

View File

@ -32,7 +32,7 @@ import eu.mihosoft.freerouting.logger.FRLogger;
/**
* Describes padstack masks for pins or vias located at the origin.
*
* @author alfons
* @author Alfons Wirtz
*/
public class Padstack implements Comparable<Padstack>, eu.mihosoft.freerouting.board.ObjectInfoPanel.Printable, java.io.Serializable
{

View File

@ -32,7 +32,7 @@ import eu.mihosoft.freerouting.logger.FRLogger;
/**
* Describes a library of padstacks for pins or vias.
*
* @author alfons
* @author Alfons Wirtz
*/
public class Padstacks implements java.io.Serializable
{

View File

@ -30,7 +30,7 @@ import java.util.Collection;
/**
* Describes the electrical Nets on a board.
*
* @author alfons
* @author Alfons Wirtz
*/
public class Nets implements java.io.Serializable
{