1 /* -------------------------------------------------------------------
2 GeoVISTA Center (Penn State, Dept. of Geography)
3 Java source file for the class AdjacencyMatrixFinder
4 Copyright (c), 2002, GeoVISTA Center
5 All Rights Reserved.
6 Original Author: Frank Hardisty
7 $Author: hardisty $
8 $Id: AdjacencyMatrixFinder.java,v 1.2 2003/04/25 17:44:56 hardisty Exp $
9 $Date: 2003/04/25 17:44:56 $
10 Reference: Document no:
11 ___ ___
12 ------------------------------------------------------------------- *
13 */
14
15
16 package edu.psu.geovista.data.geog;
17
18 import javax.swing.*;
19 import javax.swing.event.*;
20 import java.awt.*;
21 import java.awt.event.*;
22 import java.awt.image.*;
23 import java.awt.geom.*;
24 import java.util.*;
25 import edu.psu.geovista.io.geog.*;
26 import edu.psu.geovista.app.map.*;
27
28 /***
29 * put your documentation comment here
30 */
31 public class AdjacencyMatrixFinder {
32
33
34 public AdjacencyMatrixFinder() {
35
36 }
37
38 public static boolean[][] findMatrix (Shape[] shapes) {
39 return null;
40 }
41
42 }
This page was automatically generated by Maven