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