~ubuntu-branches/ubuntu/natty/jts/natty

« back to all changes in this revision

Viewing changes to src/com/vividsolutions/jts/geom/util/PolygonExtracter.java

  • Committer: Bazaar Package Importer
  • Author(s): Wolfgang Baer
  • Date: 2005-08-07 14:12:35 UTC
  • Revision ID: james.westby@ubuntu.com-20050807141235-7hy3ll3xpq79djcb
Tags: upstream-1.6
ImportĀ upstreamĀ versionĀ 1.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
/*
 
3
 * The JTS Topology Suite is a collection of Java classes that
 
4
 * implement the fundamental operations required to validate a given
 
5
 * geo-spatial data set to a known topological specification.
 
6
 *
 
7
 * Copyright (C) 2001 Vivid Solutions
 
8
 *
 
9
 * This library is free software; you can redistribute it and/or
 
10
 * modify it under the terms of the GNU Lesser General Public
 
11
 * License as published by the Free Software Foundation; either
 
12
 * version 2.1 of the License, or (at your option) any later version.
 
13
 *
 
14
 * This library is distributed in the hope that it will be useful,
 
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
17
 * Lesser General Public License for more details.
 
18
 *
 
19
 * You should have received a copy of the GNU Lesser General Public
 
20
 * License along with this library; if not, write to the Free Software
 
21
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
22
 *
 
23
 * For more information, contact:
 
24
 *
 
25
 *     Vivid Solutions
 
26
 *     Suite #1A
 
27
 *     2328 Government Street
 
28
 *     Victoria BC  V8T 5G5
 
29
 *     Canada
 
30
 *
 
31
 *     (250)385-6040
 
32
 *     www.vividsolutions.com
 
33
 */
 
34
package com.vividsolutions.jts.geom.util;
 
35
 
 
36
import java.util.*;
 
37
import com.vividsolutions.jts.geom.*;
 
38
 
 
39
/**
 
40
 * Extracts all the 2-dimensional ({@link Polygon}) components from a {@link Geometry}.
 
41
 *
 
42
 * @version 1.6
 
43
 */
 
44
public class PolygonExtracter
 
45
  implements GeometryFilter
 
46
{
 
47
  /**
 
48
   * Returns the Polygon components from a single geometry.
 
49
   * If more than one geometry is to be processed, it is more
 
50
   * efficient to create a single {@link PolygonExtracterFilter} instance
 
51
   * and pass it to multiple geometries.
 
52
   */
 
53
  public static List getPolygons(Geometry geom)
 
54
  {
 
55
    List comps = new ArrayList();
 
56
    geom.apply(new PolygonExtracter(comps));
 
57
    return comps;
 
58
  }
 
59
 
 
60
  private List comps;
 
61
  /**
 
62
   * Constructs a PolygonExtracterFilter with a list in which to store Polygons found.
 
63
   */
 
64
  public PolygonExtracter(List comps)
 
65
  {
 
66
    this.comps = comps;
 
67
  }
 
68
 
 
69
  public void filter(Geometry geom)
 
70
  {
 
71
    if (geom instanceof Polygon) comps.add(geom);
 
72
  }
 
73
 
 
74
}