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 curves. 014 */ 015public abstract class Curve extends GeometricPrimitive { 016 017 protected Curve() { 018 } 019 020 protected Curve(String gid, URI srsName, int srsDimension) { 021 super(gid, srsName, srsDimension); 022 } 023 024// Cloneable 025 026 @Override 027 public Curve clone() { 028 return (Curve)super.clone(); 029 } 030} 031