Made the @author tag consistent in all files
This commit is contained in:
parent
ae07f577a4
commit
8010ddd120
|
@ -28,7 +28,7 @@ import java.util.Collection;
|
|||
|
||||
/**
|
||||
*
|
||||
* @author alfons
|
||||
* @author Alfons Wirtz
|
||||
*/
|
||||
public interface CompleteExpansionRoom extends ExpansionRoom
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -30,7 +30,7 @@ import eu.mihosoft.freerouting.geometry.planar.TileShape;
|
|||
|
||||
/**
|
||||
*
|
||||
* @author alfons
|
||||
* @author Alfons Wirtz
|
||||
*/
|
||||
public interface ExpansionRoom
|
||||
{
|
||||
|
|
|
@ -28,7 +28,7 @@ import eu.mihosoft.freerouting.datastructures.Observers;
|
|||
|
||||
/**
|
||||
*
|
||||
* @author alfons
|
||||
* @author Alfons Wirtz
|
||||
*/
|
||||
public interface BoardObservers extends Observers<Item>
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -28,7 +28,7 @@ import java.awt.Color;
|
|||
/**
|
||||
* Information for drawing an item on the screen.
|
||||
*
|
||||
* @author alfons
|
||||
* @author Alfons Wirtz
|
||||
*/
|
||||
public class ItemDrawInfo
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -27,7 +27,7 @@ package eu.mihosoft.freerouting.datastructures;
|
|||
/**
|
||||
* Interface for stoppable threads.
|
||||
*
|
||||
* @author alfons
|
||||
* @author Alfons Wirtz
|
||||
*/
|
||||
public interface Stoppable
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -30,7 +30,7 @@ import java.util.Map;
|
|||
/**
|
||||
* Describes the placement data of a library component
|
||||
*
|
||||
* @author alfons
|
||||
* @author Alfons Wirtz
|
||||
*/
|
||||
public class ComponentPlacement
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -30,7 +30,7 @@ import java.util.LinkedList;
|
|||
/**
|
||||
* Describes a layer in a Specctra dsn file.
|
||||
*
|
||||
* @author alfons
|
||||
* @author Alfons Wirtz
|
||||
*/
|
||||
public class Layer
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -31,7 +31,7 @@ import java.util.LinkedList;
|
|||
/**
|
||||
* Contains the information of a Specctra Class scope.
|
||||
*
|
||||
* @author alfons
|
||||
* @author Alfons Wirtz
|
||||
*/
|
||||
public class NetClass
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -26,7 +26,7 @@ package eu.mihosoft.freerouting.designforms.specctra;
|
|||
/**
|
||||
* Interface for scanner generated by jflex.
|
||||
*
|
||||
* @author alfons
|
||||
* @author Alfons Wirtz
|
||||
*/
|
||||
public interface Scanner
|
||||
{
|
||||
|
|
|
@ -25,7 +25,7 @@ package eu.mihosoft.freerouting.designforms.specctra;
|
|||
|
||||
/**
|
||||
*
|
||||
* @author alfons
|
||||
* @author Alfons Wirtz
|
||||
*/
|
||||
|
||||
import eu.mihosoft.freerouting.logger.FRLogger;
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -28,7 +28,7 @@ import javax.swing.JLabel;
|
|||
/**
|
||||
* Text fields to display messages on the screen.
|
||||
*
|
||||
* @author arbeit
|
||||
* @author Alfons Wirtz
|
||||
*/
|
||||
public class ScreenMessages
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue