001 002/* 003 * Copyright (C) 2010 Archie L. Cobbs. All rights reserved. 004 * 005 * $Id$ 006 */ 007 008package org.dellroad.jibxbindings.pidf.lo.gml; 009 010import java.net.URI; 011 012/** 013 * GML geometric primitives. 014 */ 015public abstract class GeometricPrimitive extends Geometry { 016 017 protected GeometricPrimitive() { 018 } 019 020 protected GeometricPrimitive(String gid, URI srsName, int srsDimension) { 021 super(gid, srsName, srsDimension); 022 } 023 024// Cloneable 025 026 @Override 027 public GeometricPrimitive clone() { 028 return (GeometricPrimitive)super.clone(); 029 } 030} 031