file_name
stringlengths
6
86
file_path
stringlengths
45
249
content
stringlengths
47
6.26M
file_size
int64
47
6.26M
language
stringclasses
1 value
extension
stringclasses
1 value
repo_name
stringclasses
767 values
repo_stars
int64
8
14.4k
repo_forks
int64
0
1.17k
repo_open_issues
int64
0
788
repo_created_at
stringclasses
767 values
repo_pushed_at
stringclasses
767 values
TextTransfer.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/clipboard/TextTransfer.java
package net.sourceforge.fidocadj.clipboard; import java.awt.datatransfer.Clipboard; import java.awt.datatransfer.ClipboardOwner; import java.awt.datatransfer.Transferable; import java.awt.datatransfer.StringSelection; import java.awt.datatransfer.DataFlavor; import java.awt.datatransfer.UnsupportedFlavorException; imp...
4,018
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
package-info.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/globals/package-info.java
/** Provide methods of general interest (usually, low level). Some classes define global constants as well as global variables. */ package net.sourceforge.fidocadj.globals;
177
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
AccessResources.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/globals/AccessResources.java
package net.sourceforge.fidocadj.globals; import java.util.*; /** SWING VERSION This class is a container for the resource bundles employed by FidoCadJ. We need that since the code employing it must run on Swing as well as on Android and with Android we do not have the ResourceBundle class av...
1,769
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
Utf8ResourceBundle.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/globals/Utf8ResourceBundle.java
package net.sourceforge.fidocadj.globals; import java.io.UnsupportedEncodingException; import java.util.Enumeration; import java.util.Locale; import java.util.PropertyResourceBundle; import java.util.ResourceBundle; /** Taken here http://www.thoughtsabout.net/blog/archives/000044.html TODO: review Javadoc comment...
3,857
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
LibUtils.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/globals/LibUtils.java
package net.sourceforge.fidocadj.globals; import java.io.File; import java.io.FileNotFoundException; import java.io.PrintWriter; import java.io.UnsupportedEncodingException; import java.io.IOException; import java.util.ArrayList; import java.util.LinkedList; import java.util.List; import java.util.Map; import java.uti...
15,596
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
Globals.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/globals/Globals.java
package net.sourceforge.fidocadj.globals; import java.util.*; import net.sourceforge.fidocadj.ADesktopIntegration; /** Globals.java What? Global variables should not be used? But... who cares!!! (ehm... PMD does!) <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistr...
12,703
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
ProvidesCopyPasteInterface.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/globals/ProvidesCopyPasteInterface.java
package net.sourceforge.fidocadj.globals; /** ProvidesCopyPasteInterface is an interface describing a minimalistic set of methods which may be used during copy/paste operations. <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under the term...
1,260
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
FileUtils.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/globals/FileUtils.java
package net.sourceforge.fidocadj.globals; import java.io.*; import java.util.*; /** The FileUtils class contains methods for file and directory handling, which comprises reading a file, copying or deleting a directory as well as things like that. <pre> This file is part of FidoCadJ. FidoCadJ is ...
6,654
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
ChangeGridState.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/toolbars/ChangeGridState.java
package net.sourceforge.fidocadj.toolbars; /** Interface used to callback notify that the current grid or snap state has changed <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published b...
1,360
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
package-info.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/toolbars/package-info.java
/** Package containing all the GUI elements for the FidoCadJ toolbars, as well as the interfaces needed for keeping track of the actions from the user. */ package net.sourceforge.fidocadj.toolbars;
206
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
ToolbarZoom.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/toolbars/ToolbarZoom.java
package net.sourceforge.fidocadj.toolbars; import javax.swing.*; import java.util.*; import java.awt.Dimension; import java.awt.Color; import java.awt.event.ActionListener; import java.awt.event.ActionEvent; import net.sourceforge.fidocadj.dialogs.LayerCellRenderer; import net.sourceforge.fidocadj.geom.ChangeCoordi...
12,107
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
ChangeZoomListener.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/toolbars/ChangeZoomListener.java
package net.sourceforge.fidocadj.toolbars; /** ChangeZoomListener interface @author Davide Bucci <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Fou...
1,053
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
ChangeSelectionListener.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/toolbars/ChangeSelectionListener.java
package net.sourceforge.fidocadj.toolbars; /** Interface used to callback notify that the current selection state has changed <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by ...
1,761
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
ToolButton.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/toolbars/ToolButton.java
package net.sourceforge.fidocadj.toolbars; import javax.swing.*; import java.net.*; import net.sourceforge.fidocadj.globals.Globals; /** ToolButton class This class contains a constructor, which allows to create buttons for the FidoCadJ toolbar, {@link ToolbarTools}. Having the button created in thi...
3,340
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
ChangeSelectedLayer.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/toolbars/ChangeSelectedLayer.java
package net.sourceforge.fidocadj.toolbars; /** Interface used to callback notify that the current layer has changed <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free So...
1,118
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
ZoomToFitListener.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/toolbars/ZoomToFitListener.java
package net.sourceforge.fidocadj.toolbars; /** ZoomToFitListener interface @author Davide Bucci <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foun...
1,122
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
ToolbarTools.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/toolbars/ToolbarTools.java
package net.sourceforge.fidocadj.toolbars; import java.awt.event.*; import javax.swing.*; import java.util.*; import net.sourceforge.fidocadj.circuit.controllers.ElementsEdtActions; /** SWING VERSION. ToolbarTools class <p>This class allows to add and organise the buttons in the toolbar. Buttons are instances o...
20,184
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
MyTimer.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/timer/MyTimer.java
package net.sourceforge.fidocadj.timer; /** MyTimer.java Profiling class. **************************************************************************** Version History <pre> Version Date Author Remarks ------------------------------------------------------------------------------ 1.0...
1,668
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
package-info.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/timer/package-info.java
/** Timing classes for profiling code execution. */ package net.sourceforge.fidocadj.timer;
94
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
package-info.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/macropicker/package-info.java
/** The macro picker tree on the right of the FidoCadJ application. */ package net.sourceforge.fidocadj.macropicker;
122
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
OperationPermissions.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/macropicker/OperationPermissions.java
package net.sourceforge.fidocadj.macropicker; /** Describe which permissions are available. <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, eith...
2,280
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
SearchField.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/macropicker/SearchField.java
package net.sourceforge.fidocadj.macropicker; import java.awt.*; import java.awt.event.*; import java.awt.font.LineMetrics; import javax.swing.*; import javax.swing.event.*; import javax.swing.border.*; import net.sourceforge.fidocadj.globals.Globals; /** * A text field for search/filter interfaces. The extra fun...
10,233
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
MacroTree.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/macropicker/MacroTree.java
package net.sourceforge.fidocadj.macropicker; import java.io.*; import java.util.*; import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.event.*; import javax.swing.text.*; import javax.swing.tree.*; import net.sourceforge.fidocadj.circuit.CircuitPanel; import net.sourceforge.fidocadj...
23,450
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
MacroTreeCellRenderer.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/macropicker/MacroTreeCellRenderer.java
package net.sourceforge.fidocadj.macropicker; import java.awt.*; import javax.swing.*; import javax.swing.tree.*; import net.sourceforge.fidocadj.macropicker.model.MacroTreeNode; /** The cell renderer: show the appropriate icon. <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can re...
2,448
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
ExpandableJTree.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/macropicker/ExpandableJTree.java
package net.sourceforge.fidocadj.macropicker; import javax.swing.*; import javax.swing.tree.*; import java.awt.*; /** Extended JTree for searching node.<BR> Features:<BR> Expands or collapses all nodes on paint event if specified.<BR> Selects leaf cyclic.<BR> <pre> This file is part of FidoCadJ. ...
5,598
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
MacroTreePopupMenu.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/macropicker/MacroTreePopupMenu.java
package net.sourceforge.fidocadj.macropicker; import java.awt.event.*; import java.io.*; import javax.swing.*; import javax.swing.event.*; import net.sourceforge.fidocadj.globals.Globals; import net.sourceforge.fidocadj.librarymodel.Library; import net.sourceforge.fidocadj.librarymodel.Category; import net.sourcefor...
8,959
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
MacroTreeModel.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/macropicker/model/MacroTreeModel.java
package net.sourceforge.fidocadj.macropicker.model; import java.util.*; import javax.swing.event.*; import javax.swing.tree.*; import javax.swing.*; import javax.swing.plaf.metal.MetalIconFactory; import net.sourceforge.fidocadj.librarymodel.LibraryModel; import net.sourceforge.fidocadj.librarymodel.Library; import ...
21,652
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
package-info.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/macropicker/model/package-info.java
/** Classes for handling the database (model) of the nodes in the macro picker tree. */ package net.sourceforge.fidocadj.macropicker.model;
149
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
NodeFilterInterface.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/macropicker/model/NodeFilterInterface.java
package net.sourceforge.fidocadj.macropicker.model; /** Interface for implementing filtering of the shown nodes. <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Soft...
1,182
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
MacroTreeNode.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/macropicker/model/MacroTreeNode.java
package net.sourceforge.fidocadj.macropicker.model; import javax.swing.*; import javax.swing.tree.*; /** Extended interface of JTree node for showing macros. <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under the terms of the GNU General P...
1,350
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
AbstractMacroTreeNode.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/macropicker/model/AbstractMacroTreeNode.java
package net.sourceforge.fidocadj.macropicker.model; import java.util.*; import javax.swing.*; import javax.swing.tree.*; /** Abstract class for MacroTreeNode. <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under the terms of the GNU General Pu...
4,409
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
package-info.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/graphic/package-info.java
/** Interfaces (and implementation, as sub-packages) of everything needed to draw on each kind of technology: Swing and Android, for example. */ package net.sourceforge.fidocadj.graphic;
191
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
DecoratedText.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/graphic/DecoratedText.java
package net.sourceforge.fidocadj.graphic; /** Decorated text is a class that provides advanced text functions. It is possible to do things as follows: I_dsat R^2 V^2e x^2^3_-3_-4 to indicate indices or exponents. The command _ indicates that the next character will be an index. The com...
4,846
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
ShapeInterface.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/graphic/ShapeInterface.java
package net.sourceforge.fidocadj.graphic; /** ShapeInterface is an interface used to specify a generic graphical shape. <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free S...
2,592
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
ColorInterface.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/graphic/ColorInterface.java
package net.sourceforge.fidocadj.graphic; /** Provides a general way to access colors. <P> D.B.: WHY THE HELL THERE ARE TWO DIFFERENT CLASSES java.awt.Color AND android.graphics.Color. TWO DIFFERENT INCOMPATIBLE THINGS TO DO EXACTLY THE SAME STUFF. SHAME SHAME SHAME! </P> <pre> This file is part o...
2,136
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
FontG.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/graphic/FontG.java
package net.sourceforge.fidocadj.graphic; /** FontG is a class containing font information. <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, eith...
1,214
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
DimensionG.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/graphic/DimensionG.java
package net.sourceforge.fidocadj.graphic; /** DimensionG <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or ...
1,318
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
PointDouble.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/graphic/PointDouble.java
package net.sourceforge.fidocadj.graphic; /** PointDouble is a class implementing a point with its coordinates (double). <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the F...
1,360
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
GraphicsInterface.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/graphic/GraphicsInterface.java
package net.sourceforge.fidocadj.graphic; import net.sourceforge.fidocadj.geom.MapCoordinates; import net.sourceforge.fidocadj.layers.LayerDesc; /** Provides a general way to draw on the screen. <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it ...
10,254
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
TextInterface.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/graphic/TextInterface.java
package net.sourceforge.fidocadj.graphic; /** Provides a general way to access text. <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version ...
1,623
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
RectangleG.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/graphic/RectangleG.java
package net.sourceforge.fidocadj.graphic; /** RectangleG is a class implementing a rectangle with its coordinates (integer). <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by t...
1,660
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
PolygonInterface.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/graphic/PolygonInterface.java
package net.sourceforge.fidocadj.graphic; /** PolygonInterface specifies methods for handling a polygon. <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundat...
1,956
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
PointG.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/graphic/PointG.java
package net.sourceforge.fidocadj.graphic; /** PointG is a class implementing a point with its coordinates (integer). P.S. why are you smirking? <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as...
1,352
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
package-info.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/graphic/nil/package-info.java
/** Draw on nothing (nil), just to calculate image size: this is not so simple with text primitives... */ package net.sourceforge.fidocadj.graphic.nil;
157
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
PolygonNull.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/graphic/nil/PolygonNull.java
package net.sourceforge.fidocadj.graphic.nil; import java.awt.*; import net.sourceforge.fidocadj.graphic.PolygonInterface; /** SWING VERSION PolygonInterface specifies methods for handling a polygon. TODO: reduce dependency on java.awt.*; <pre> This file is part of FidoCadJ. FidoCadJ is free ...
2,518
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
ShapeNull.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/graphic/nil/ShapeNull.java
package net.sourceforge.fidocadj.graphic.nil; import java.awt.*; import java.awt.geom.*; import net.sourceforge.fidocadj.graphic.ShapeInterface; import net.sourceforge.fidocadj.graphic.RectangleG; /** SWING VERSION ShapeNull is a wrapper around the Shape Swing class. TODO: reduce dependency on java.awt....
3,465
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
GraphicsNull.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/graphic/nil/GraphicsNull.java
package net.sourceforge.fidocadj.graphic.nil; import java.awt.*; import java.awt.geom.*; import java.awt.image.*; import net.sourceforge.fidocadj.geom.MapCoordinates; import net.sourceforge.fidocadj.layers.LayerDesc; import net.sourceforge.fidocadj.graphic.GraphicsInterface; import net.sourceforge.fidocadj.graphic.Sh...
13,947
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
ColorNull.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/graphic/nil/ColorNull.java
package net.sourceforge.fidocadj.graphic.nil; import net.sourceforge.fidocadj.graphic.ColorInterface; /** SWING VERSION Null color class. Does nothing :-) Class like this one are useful when calculating the size of the drawings. <pre> This file is part of FidoCadJ. FidoCadJ is free softwar...
2,370
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
PolygonSwing.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/graphic/swing/PolygonSwing.java
package net.sourceforge.fidocadj.graphic.swing; import java.awt.*; import net.sourceforge.fidocadj.graphic.PolygonInterface; /** PolygonInterface specifies methods for handling a polygon. <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under t...
2,617
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
ColorSwing.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/graphic/swing/ColorSwing.java
package net.sourceforge.fidocadj.graphic.swing; import java.awt.Color; import net.sourceforge.fidocadj.graphic.ColorInterface; /** This class maps the general interface to java.awt.Color. We need this because there is no unified color description between Swing/PC versions of Java and Android's ones (GRRRRR!!...
3,115
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
ShapeSwing.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/graphic/swing/ShapeSwing.java
package net.sourceforge.fidocadj.graphic.swing; import java.awt.*; import java.awt.geom.*; import net.sourceforge.fidocadj.graphic.ShapeInterface; import net.sourceforge.fidocadj.graphic.RectangleG; /** ShapeSwing is a wrapper around the Shape Swing class. <pre> This file is part of FidoCadJ. FidoCadJ is ...
3,566
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
Graphics2DSwing.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/graphic/swing/Graphics2DSwing.java
package net.sourceforge.fidocadj.graphic.swing; import java.awt.*; import java.awt.geom.*; import java.awt.image.*; // Used in drawGrid import net.sourceforge.fidocadj.geom.MapCoordinates; import net.sourceforge.fidocadj.globals.Globals; import net.sourceforge.fidocadj.layers.LayerDesc; import net.sourceforge.fido...
29,907
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
PrimitiveConnection.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/primitives/PrimitiveConnection.java
package net.sourceforge.fidocadj.primitives; import java.io.*; import java.util.*; import net.sourceforge.fidocadj.export.ExportInterface; import net.sourceforge.fidocadj.geom.MapCoordinates; import net.sourceforge.fidocadj.geom.GeometricDistances; import net.sourceforge.fidocadj.globals.Globals; import net.sourcefor...
9,068
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
package-info.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/primitives/package-info.java
/** The implemented graphic primitives (and related classes). They are stored in the circuit.model.DrawingModel class. They are responsible of knowing everything about themselves: how to be drawn, how to be exported, how to calculate their size and so on. <p> All drawing primitives extends the Graph...
452
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
PrimitiveLine.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/primitives/PrimitiveLine.java
package net.sourceforge.fidocadj.primitives; import java.io.*; import java.util.*; import net.sourceforge.fidocadj.dialogs.ParameterDescription; import net.sourceforge.fidocadj.dialogs.DashInfo; import net.sourceforge.fidocadj.export.ExportInterface; import net.sourceforge.fidocadj.geom.GeometricDistances; import net...
16,530
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
PrimitivePCBPad.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/primitives/PrimitivePCBPad.java
package net.sourceforge.fidocadj.primitives; import java.io.*; import java.util.*; import net.sourceforge.fidocadj.dialogs.ParameterDescription; import net.sourceforge.fidocadj.export.ExportInterface; import net.sourceforge.fidocadj.geom.GeometricDistances; import net.sourceforge.fidocadj.geom.MapCoordinates; import ...
14,738
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
PrimitivePolygon.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/primitives/PrimitivePolygon.java
package net.sourceforge.fidocadj.primitives; import java.io.*; import java.util.*; import net.sourceforge.fidocadj.dialogs.ParameterDescription; import net.sourceforge.fidocadj.dialogs.DashInfo; import net.sourceforge.fidocadj.export.ExportInterface; import net.sourceforge.fidocadj.geom.MapCoordinates; import net.sou...
18,648
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
GraphicPrimitive.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/primitives/GraphicPrimitive.java
package net.sourceforge.fidocadj.primitives; import java.io.*; import java.util.*; import net.sourceforge.fidocadj.dialogs.ParameterDescription; import net.sourceforge.fidocadj.dialogs.LayerInfo; import net.sourceforge.fidocadj.export.ExportInterface; import net.sourceforge.fidocadj.geom.MapCoordinates; import net.so...
39,194
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
MacroDesc.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/primitives/MacroDesc.java
package net.sourceforge.fidocadj.primitives; /** Class MacroDesc provides a standard description of the macro. It provides its name, its description and its category <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under the terms of the GNU ...
2,771
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
PrimitiveOval.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/primitives/PrimitiveOval.java
package net.sourceforge.fidocadj.primitives; import java.io.*; import java.util.*; import net.sourceforge.fidocadj.dialogs.ParameterDescription; import net.sourceforge.fidocadj.dialogs.DashInfo; import net.sourceforge.fidocadj.export.ExportInterface; import net.sourceforge.fidocadj.geom.GeometricDistances; import net...
12,982
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
PrimitivePCBLine.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/primitives/PrimitivePCBLine.java
package net.sourceforge.fidocadj.primitives; import java.io.*; import java.util.*; import net.sourceforge.fidocadj.dialogs.ParameterDescription; import net.sourceforge.fidocadj.export.ExportInterface; import net.sourceforge.fidocadj.geom.GeometricDistances; import net.sourceforge.fidocadj.geom.MapCoordinates; import ...
11,049
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
PrimitiveAdvText.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/primitives/PrimitiveAdvText.java
package net.sourceforge.fidocadj.primitives; import java.io.*; import java.util.*; import net.sourceforge.fidocadj.dialogs.ParameterDescription; import net.sourceforge.fidocadj.dialogs.LayerInfo; import net.sourceforge.fidocadj.export.ExportInterface; import net.sourceforge.fidocadj.geom.MapCoordinates; import net.so...
24,085
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
PrimitiveMacro.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/primitives/PrimitiveMacro.java
package net.sourceforge.fidocadj.primitives; import java.io.*; import java.util.*; import net.sourceforge.fidocadj.dialogs.ParameterDescription; import net.sourceforge.fidocadj.export.ExportInterface; import net.sourceforge.fidocadj.geom.MapCoordinates; import net.sourceforge.fidocadj.globals.Globals; import net.sour...
23,951
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
PrimitiveBezier.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/primitives/PrimitiveBezier.java
package net.sourceforge.fidocadj.primitives; import java.io.*; import java.util.*; import net.sourceforge.fidocadj.dialogs.ParameterDescription; import net.sourceforge.fidocadj.dialogs.DashInfo; import net.sourceforge.fidocadj.export.ExportInterface; import net.sourceforge.fidocadj.geom.MapCoordinates; import net.sou...
19,297
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
PrimitiveRectangle.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/primitives/PrimitiveRectangle.java
package net.sourceforge.fidocadj.primitives; import java.io.*; import java.util.*; import net.sourceforge.fidocadj.dialogs.ParameterDescription; import net.sourceforge.fidocadj.dialogs.DashInfo; import net.sourceforge.fidocadj.export.ExportInterface; import net.sourceforge.fidocadj.geom.GeometricDistances; import net...
14,205
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
Arrow.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/primitives/Arrow.java
package net.sourceforge.fidocadj.primitives; import java.util.*; import net.sourceforge.fidocadj.geom.MapCoordinates; import net.sourceforge.fidocadj.geom.GeometricDistances; import net.sourceforge.fidocadj.graphic.PointG; import net.sourceforge.fidocadj.graphic.GraphicsInterface; import net.sourceforge.fidocadj.grap...
16,678
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
PrimitiveComplexCurve.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/primitives/PrimitiveComplexCurve.java
package net.sourceforge.fidocadj.primitives; import java.io.*; import java.util.*; import net.sourceforge.fidocadj.dialogs.ParameterDescription; import net.sourceforge.fidocadj.dialogs.DashInfo; import net.sourceforge.fidocadj.export.ExportInterface; import net.sourceforge.fidocadj.geom.MapCoordinates; import net.sou...
42,457
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
MouseWheelHandler.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/circuit/MouseWheelHandler.java
package net.sourceforge.fidocadj.circuit; import java.awt.event.*; import net.sourceforge.fidocadj.globals.Globals; /** MouseWheelHandler: handle wheel events for the zoom in/out. <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under the term...
3,192
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
PopUpMenu.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/circuit/PopUpMenu.java
package net.sourceforge.fidocadj.circuit; import java.awt.event.*; import java.io.*; import javax.swing.*; import net.sourceforge.fidocadj.dialogs.DialogSymbolize; import net.sourceforge.fidocadj.globals.Globals; import net.sourceforge.fidocadj.globals.LibUtils; import net.sourceforge.fidocadj.primitives.GraphicPrimi...
20,053
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
package-info.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/circuit/package-info.java
/** <p> The package circuit contains the code for building a graphical editor, following a model/view/controller pattern. This package depends on other packages for implementing things such as the graphical primitives to be drawn.</p> */ package net.sourceforge.fidocadj.circuit;
284
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
CircuitPanel.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/circuit/CircuitPanel.java
package net.sourceforge.fidocadj.circuit; import java.awt.*; import java.io.*; import java.awt.event.*; import javax.swing.*; import java.util.*; import net.sourceforge.fidocadj.dialogs.LayerInfo; import net.sourceforge.fidocadj.dialogs.ParameterDescription; import net.sourceforge.fidocadj.dialogs.DialogParameters; i...
28,012
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
ImageAsCanvas.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/circuit/ImageAsCanvas.java
package net.sourceforge.fidocadj.circuit; import java.awt.*; import java.awt.image.*; import java.io.*; import javax.imageio.*; import net.sourceforge.fidocadj.geom.MapCoordinates; /** Employs a bitmap image as a canvas to trace on it. <pre> This file is part of FidoCadJ. FidoCadJ is free software: you...
10,223
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
Ruler.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/circuit/Ruler.java
package net.sourceforge.fidocadj.circuit; import java.awt.*; import net.sourceforge.fidocadj.geom.MapCoordinates; import net.sourceforge.fidocadj.globals.Globals; /** Draw a ruler. <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under the ter...
5,998
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
MouseMoveClickHandler.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/circuit/MouseMoveClickHandler.java
package net.sourceforge.fidocadj.circuit; import java.awt.*; import java.awt.event.*; import net.sourceforge.fidocadj.globals.Globals; import net.sourceforge.fidocadj.circuit.controllers.ElementsEdtActions; import net.sourceforge.fidocadj.circuit.controllers.ContinuosMoveActions; import net.sourceforge.fidocadj.circu...
10,479
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
HasChangedListener.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/circuit/HasChangedListener.java
package net.sourceforge.fidocadj.circuit; /** Interface used to callback notify that something has changed <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Fo...
1,104
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
package-info.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/circuit/views/package-info.java
/**<p> The package circuit.views contains the views for the view/model/controller pattern to represent the contents of the model.DrawingModel class.</p> */ package net.sourceforge.fidocadj.circuit.views;
206
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
Drawing.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/circuit/views/Drawing.java
package net.sourceforge.fidocadj.circuit.views; import net.sourceforge.fidocadj.circuit.model.DrawingModel; import net.sourceforge.fidocadj.geom.MapCoordinates; import net.sourceforge.fidocadj.layers.LayerDesc; import net.sourceforge.fidocadj.primitives.GraphicPrimitive; import net.sourceforge.fidocadj.graphic.Graphic...
6,899
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
Export.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/circuit/views/Export.java
package net.sourceforge.fidocadj.circuit.views; import java.io.*; import net.sourceforge.fidocadj.circuit.model.DrawingModel; import net.sourceforge.fidocadj.graphic.PointG; import net.sourceforge.fidocadj.graphic.DimensionG; import net.sourceforge.fidocadj.export.ExportInterface; import net.sourceforge.fidocadj.geom...
6,240
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
ParserActions.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/circuit/controllers/ParserActions.java
package net.sourceforge.fidocadj.circuit.controllers; import java.io.*; import java.util.*; import java.net.*; import net.sourceforge.fidocadj.circuit.model.DrawingModel; import net.sourceforge.fidocadj.export.ExportGraphic; import net.sourceforge.fidocadj.globals.Globals; import net.sourceforge.fidocadj.layers.Layer...
41,388
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
package-info.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/circuit/controllers/package-info.java
/**<p> The package circuit.controllers contains classes useful for modify the drawing stored in the circuit.model.DrawingModel class. They contain the code needed for parsing the drawing code, to take care of undo operations (with some limitations when libraries are taken into account) as well as interaction with ...
584
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
ContinuosMoveActions.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/circuit/controllers/ContinuosMoveActions.java
package net.sourceforge.fidocadj.circuit.controllers; import java.io.*; import net.sourceforge.fidocadj.circuit.model.DrawingModel; import net.sourceforge.fidocadj.geom.MapCoordinates; import net.sourceforge.fidocadj.geom.ChangeCoordinatesListener; import net.sourceforge.fidocadj.globals.Globals; import net.sourcefor...
12,466
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
EditorActions.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/circuit/controllers/EditorActions.java
package net.sourceforge.fidocadj.circuit.controllers; import java.util.*; import net.sourceforge.fidocadj.circuit.model.ProcessElementsInterface; import net.sourceforge.fidocadj.circuit.model.DrawingModel; import net.sourceforge.fidocadj.geom.MapCoordinates; import net.sourceforge.fidocadj.layers.LayerDesc; import ne...
10,135
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
HandleActions.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/circuit/controllers/HandleActions.java
package net.sourceforge.fidocadj.circuit.controllers; import java.util.*; import net.sourceforge.fidocadj.circuit.model.DrawingModel; import net.sourceforge.fidocadj.geom.MapCoordinates; import net.sourceforge.fidocadj.layers.LayerDesc; import net.sourceforge.fidocadj.primitives.GraphicPrimitive; import net.sourcefor...
12,048
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
SelectionActions.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/circuit/controllers/SelectionActions.java
package net.sourceforge.fidocadj.circuit.controllers; import java.util.*; import net.sourceforge.fidocadj.circuit.model.DrawingModel; import net.sourceforge.fidocadj.circuit.model.ProcessElementsInterface; import net.sourceforge.fidocadj.primitives.GraphicPrimitive; import net.sourceforge.fidocadj.primitives.Primitiv...
5,362
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
UndoActions.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/circuit/controllers/UndoActions.java
package net.sourceforge.fidocadj.circuit.controllers; import java.io.*; import java.util.*; import net.sourceforge.fidocadj.circuit.HasChangedListener; import net.sourceforge.fidocadj.globals.FileUtils; import net.sourceforge.fidocadj.undo.UndoState; import net.sourceforge.fidocadj.undo.UndoManager; import net.source...
5,635
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
CopyPasteActions.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/circuit/controllers/CopyPasteActions.java
package net.sourceforge.fidocadj.circuit.controllers; import net.sourceforge.fidocadj.circuit.model.DrawingModel; import net.sourceforge.fidocadj.globals.ProvidesCopyPasteInterface; /** CopyPasteActions: contains a controller which can perform copy and paste actions on a primitive database. <pre> This file i...
3,865
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
AddElements.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/circuit/controllers/AddElements.java
package net.sourceforge.fidocadj.circuit.controllers; import java.io.*; import net.sourceforge.fidocadj.circuit.model.DrawingModel; import net.sourceforge.fidocadj.primitives.GraphicPrimitive; import net.sourceforge.fidocadj.primitives.PrimitivePCBPad; import net.sourceforge.fidocadj.primitives.PrimitivePCBLine; impo...
17,717
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
PrimitivesParInterface.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/circuit/controllers/PrimitivesParInterface.java
package net.sourceforge.fidocadj.circuit.controllers; /** PrimitivesParInterface specifies some actions useful to modify characteristics of primitives. They are usually provided by the editor component. <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or...
3,238
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
ElementsEdtActions.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/circuit/controllers/ElementsEdtActions.java
package net.sourceforge.fidocadj.circuit.controllers; import net.sourceforge.fidocadj.circuit.model.DrawingModel; import net.sourceforge.fidocadj.geom.MapCoordinates; import net.sourceforge.fidocadj.layers.StandardLayers; import net.sourceforge.fidocadj.primitives.GraphicPrimitive; import net.sourceforge.fidocadj.prim...
18,110
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
package-info.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/circuit/model/package-info.java
/** <p> The package circuit.model contains model.DrawingModel class, which is the database of the graphical objects composing the drawing.</p> */ package net.sourceforge.fidocadj.circuit.model;
196
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
DrawingModel.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/circuit/model/DrawingModel.java
package net.sourceforge.fidocadj.circuit.model; import java.util.*; import net.sourceforge.fidocadj.circuit.ImageAsCanvas; import net.sourceforge.fidocadj.circuit.controllers.UndoActions; import net.sourceforge.fidocadj.layers.LayerDesc; import net.sourceforge.fidocadj.primitives.GraphicPrimitive; import net.sourcefo...
11,962
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
ProcessElementsInterface.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/circuit/model/ProcessElementsInterface.java
package net.sourceforge.fidocadj.circuit.model; import net.sourceforge.fidocadj.primitives.GraphicPrimitive; /** Provides a general way to apply an action to a graphic element. <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under the terms of the...
1,184
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
DashCellRenderer.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/dialogs/DashCellRenderer.java
package net.sourceforge.fidocadj.dialogs; import java.awt.*; import javax.swing.*; /** The class ArrowCellRenderer is used in the arrow list. @author Davide Bucci <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under the terms of the GNU ...
1,785
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
LibraryPanel.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/dialogs/LibraryPanel.java
package net.sourceforge.fidocadj.dialogs; import javax.swing.*; import javax.swing.event.*; import javax.swing.border.*; import javax.swing.plaf.metal.*; import net.sourceforge.fidocadj.globals.Globals; import java.awt.*; import java.io.*; import java.beans.PropertyChangeListener; import java.beans.PropertyChangeEve...
12,879
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
DialogEditLayer.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/dialogs/DialogEditLayer.java
package net.sourceforge.fidocadj.dialogs; import java.io.*; import java.awt.*; import java.awt.event.*; import javax.swing.*; import net.sourceforge.fidocadj.globals.Globals; import net.sourceforge.fidocadj.layers.LayerDesc; import net.sourceforge.fidocadj.graphic.swing.ColorSwing; import net.sourceforge.fidocadj.dia...
7,303
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
EnterCircuitFrame.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/dialogs/EnterCircuitFrame.java
package net.sourceforge.fidocadj.dialogs; import java.awt.*; import javax.swing.*; import java.awt.event.*; import net.sourceforge.fidocadj.globals.Globals; /** EnterCircuitFrame.java This file is part of FidoCadJ. <pre> FidoCadJ is free software: you can redistribute it and/or modify it under the...
5,736
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
ArrowCellRenderer.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/dialogs/ArrowCellRenderer.java
package net.sourceforge.fidocadj.dialogs; import java.awt.*; import javax.swing.*; /** The class ArrowCellRenderer is used in the arrow list. @author Davide Bucci <pre> This file is part of FidoCadJ. FidoCadJ is free software: you can redistribute it and/or modify it under the terms of the GNU ...
1,789
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
package-info.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/dialogs/package-info.java
/** All the dialog windows (and related ancillary classes) of FidoCadJ. */ package net.sourceforge.fidocadj.dialogs;
121
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
DialogParameters.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/dialogs/DialogParameters.java
package net.sourceforge.fidocadj.dialogs; import java.io.*; import java.awt.*; import javax.swing.*; import java.awt.event.*; import java.util.*; import net.sourceforge.fidocadj.dialogs.OSKeybPanel.KEYBMODES; import net.sourceforge.fidocadj.globals.Globals; import net.sourceforge.fidocadj.layers.LayerDesc; import net...
21,346
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z
OriginCircuitPanel.java
/FileExtraction/Java_unseen/DarwinNE_FidoCadJ/src/net/sourceforge/fidocadj/dialogs/OriginCircuitPanel.java
package net.sourceforge.fidocadj.dialogs; import net.sourceforge.fidocadj.circuit.CircuitPanel; import net.sourceforge.fidocadj.globals.Globals; import java.io.*; import java.awt.*; /** The class OriginCircuitPanel extends the CircuitPanel class by adding coordinate axis which can be moved. <pre> This ...
4,477
Java
.java
DarwinNE/FidoCadJ
107
39
47
2015-07-26T02:26:30Z
2023-12-01T11:46:47Z