Skip to content

Commit

Permalink
Updated all files to reflect current legal name.
Browse files Browse the repository at this point in the history
  • Loading branch information
SpoiledInk13 committed Jul 5, 2018
1 parent a018999 commit cc61080
Show file tree
Hide file tree
Showing 500 changed files with 506 additions and 506 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* receive picking events for it. The instance must also be added as a listener
* to item or color picking support.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class AwtScrollbarActor extends AbstractScrollbarActor implements MouseListener, MouseMotionListener, MouseWheelListener {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/**
* Interface for consolidating all of the AWT camera interfaces.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public interface AwtCamera extends MouseListener, MouseMotionListener, MouseWheelListener {
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* Camera used to view a 3d scene from one direction and allow the user to drag
* the camera on the x/y plane using the mouse.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class AwtDraggingCamera extends DraggingCamera implements AwtCamera {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* the scene. This camera is intended to be used as a test view for the
* SimpleCamera class.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class AwtDrivingCamera extends DrivingCamera implements KeyListener, AwtCamera {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* mouse button will zoom the camera. Holding control with the left mouse button
* will drag the camera.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class AwtOrbitCamera extends OrbitCamera implements KeyListener, AwtCamera {

Expand Down
2 changes: 1 addition & 1 deletion svf-awt/src/main/java/gov/pnnl/svf/awt/color/AwtColor.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Immutable color class optimized for use with JOGL. This class provides a
* convenience constructor for use with AWT.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class AwtColor extends Color implements Serializable {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* bottom left of the rectangle. This version just provides a convenience
* constructor for AWT and Swing.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*
*/
public class AwtRectangle extends Rectangle implements Serializable {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* rectangle. This version just provides a convenience constructor for AWT and
* Swing.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*
*/
public class AwtRectangle2D extends Rectangle2D implements Serializable {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* Initial key states will be set to UP when this class is instantiated
* regardless of actual key state.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*
*/
public class AwtInputKeyAdapter implements KeyListener, FocusListener {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* Picking is only supported on cameras that view the entire scene and fill the
* viewport.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class AwtColorPickingCamera extends AbstractColorPickingCamera implements MouseListener, MouseMotionListener, MouseWheelListener, KeyListener {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* is attached to this picking camera. Picking is only supported on cameras that
* view the entire scene and fill the viewport.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class AwtItemPickingCamera extends AbstractItemPickingCamera implements MouseListener, MouseMotionListener, MouseWheelListener, KeyListener {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* is attached to this picking camera. Picking is only supported on cameras that
* view the entire scene and fill the viewport.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class AwtPickingCamera extends AbstractPickingCamera implements MouseListener, MouseMotionListener, MouseWheelListener, KeyListener {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/**
* Listener used to listen for picking events.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
class AwtPickingCameraListener implements MouseListener, MouseMotionListener, MouseWheelListener, KeyListener {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*
* @param <C> the component type that's used to render this scene
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public abstract class AbstractAwtScene<C extends GLAutoDrawable> extends AbstractScene<C> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* cameras during runtime. It also allows for a single place of reference for
* access to these objects.</P>
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class AwtPanelScene extends AbstractAwtScene<GLJPanel> {

Expand Down
2 changes: 1 addition & 1 deletion svf-awt/src/main/java/gov/pnnl/svf/awt/scene/AwtScene.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* cameras during runtime. It also allows for a single place of reference for
* access to these objects.</P>
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class AwtScene extends AbstractAwtScene<GLCanvas> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
/**
* Scene factory for AWT scene types.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class AwtSceneFactory implements SceneFactory {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
/**
* AWT implementation of the tooltip actor.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class AwtTooltipActor extends TooltipActor implements MouseMotionListener, MouseListener {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
/**
* AWT implementation of the busy service.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class AwtBusyService extends AbstractBusyService {

Expand Down Expand Up @@ -73,7 +73,7 @@ private Component getRoot(final Component component) {
/**
* Runnable that will show or hide the busy cursor.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
protected static class BusyRunnable implements Runnable {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/**
* AWT implementation of the cursor service.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class AwtCursorService extends AbstractCursorService<Cursor> implements PropertyChangeListener, KeyListener, MouseListener {

Expand Down Expand Up @@ -161,7 +161,7 @@ private void loadCursor(final CursorType cursorType, final String url, final int
/**
* Runnable that will show the active cursor.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
protected static class ShowCursorRunnable implements Runnable {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Utilities for AWT cameras.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class AwtCameraUtils {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/**
* Utility class for getting the current state of modifier keys.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class AwtKeyUtil implements AWTEventListener {

Expand Down
2 changes: 1 addition & 1 deletion svf-awt/src/test/java/gov/pnnl/svf/awt/AwtTestScene.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
/**
* AWT scene implementation used for testing.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class AwtTestScene implements SceneExt {

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

/**
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class AwtColorTest {

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

/**
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class AwtInputKeyAdapterTest {

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

/**
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class ColorPickingTest {

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

/**
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class AwtAbstractSceneDisposeTest {

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

/**
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class AwtAbstractSceneTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* be something like: 6, 5, 7, 4, 8, 3, 9, 2, 1, 0. This class is not thread
* safe.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public abstract class AbstractInterpolationIndexer implements Indexer {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* A generic tree node for implementing a basic tree. This class is not thread
* safe.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
* @param <T> The type of value contained in this node
* @param <C> The type of collection for the children nodes
* @param <N> The type of node
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/**
* Base class for a heterogeneous tuple class. This class type is immutable.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public abstract class AbstractTuple implements Serializable {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*
* @param <E> the type of elements maintained by this set
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class CountingHashSet<E> extends HashSet<E> implements CountingSet<E> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*
* @param <E> the type of elements maintained by this set
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public interface CountingSet<E> extends Set<E> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* supply a value of 7 to start then the indexes returned will be something
* like: 6, 5, 7, 4, 8, 3, 9, 2, 1, 0. This class is not thread safe.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class DoubleInterpolationIndexer extends AbstractInterpolationIndexer {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* supply a value of 7 to start then the indexes returned will be something
* like: 6, 5, 7, 4, 8, 3, 9, 2, 1, 0. This class is not thread safe.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
* @param <T> the comparable number type
*/
@SuppressWarnings("unchecked")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/**
* A simple immutable key value pair.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
* @param <K> the key type
* @param <V> the value type
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/**
* A generic tree node for implementing a basic list tree.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
* @param <T> The type of value contained in this node
*/
public class ListTreeNode<T> extends AbstractTreeNode<T, List<ListTreeNode<T>>, ListTreeNode<T>> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* supply a value of 7 to start then the indexes returned will be something
* like: 6, 5, 7, 4, 8, 3, 9, 2, 1, 0. This class is not thread safe.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class LongInterpolationIndexer extends AbstractInterpolationIndexer {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @param <C> third type
* @param <D> fourth type
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
@SuppressWarnings("unchecked")
public class Tuple4<A, B, C, D> extends AbstractTuple {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*
* @param <T> type of color object for the palette
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public abstract class AbstractColorPalette<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* A color gradient for specifying a series of colors that have a relative
* position. This implementation will not be efficient for large sets of colors.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class ColorGradient extends Color implements Serializable {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/**
* Color palette is a container and repository for a set of colors.
*
* @author Arthur Bleeker
* @author Amelia Bleeker
*/
public class ColorPalette extends AbstractColorPalette<Color> {

Expand Down
Loading

0 comments on commit cc61080

Please sign in to comment.