View Javadoc
1 /* ------------------------------------------------------------------- 2 GeoVISTA Center (Penn State, Dept. of Geography) 3 Java source file for the class LayerLine 4 Copyright (c), 2002, GeoVISTA Center 5 All Rights Reserved. 6 Original Author: Frank Hardisty 7 $Author: hardisty $ 8 $Id: LayerLine.java,v 1.2 2003/04/25 17:23:47 hardisty Exp $ 9 $Date: 2003/04/25 17:23:47 $ 10 Reference: Document no: 11 ___ ___ 12 ------------------------------------------------------------------- * 13 */ 14 15 16 package edu.psu.geovista.app.map; 17 import java.awt.image.*; 18 import java.awt.*; 19 20 /*** 21 * put your documentation comment here 22 */ 23 public class LayerLine extends LayerShape { 24 25 /* 26 * selectionX1 is expected to be less than selectionX2, same with Y1 and y2 27 */ 28 public void findSelection (int selectionX1, int selectionX2, int selectionY1, 29 int selectionY2) { 30 31 } 32 33 /* 34 * selectionX1 is expected to be less than selectionX2, same with Y1 and y2 35 */ 36 public void findSelectionShift (int selectionX1, int selectionX2, int selectionY1, 37 int selectionY2) { 38 39 } 40 41 public int findIndication(int x, int y) {return Integer.MIN_VALUE;} 42 /*** 43 * put your documentation comment here 44 * @param g2 45 */ 46 public void render (Graphics2D g2) { 47 48 } 49 50 51 }

This page was automatically generated by Maven