boundsfactory.java

来自「GEo 地理操作源代码」· Java 代码 · 共 30 行

JAVA
30
字号
/************************************************************************************************** ** ** $Id: BoundsFactory.java,v 1.1 2004/03/02 03:14:41 gregreynolds Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/go/geometry/BoundsFactory.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.go.geometry;/** * <code>BoundsFactory</code> defines a common abstraction for classes that * create <code>Bounds</code>s. * @see Bounds * * @author Open GIS Consortium, Inc. * @version $Revision: 1.1 $, $Date: 2004/03/02 03:14:41 $ */public interface BoundsFactory {        /**     * Creates a <code>Bounds</code> instance that implements the given     * bounds interface     * @param boundsInterface The Class of the desired Bounds.     * @return the newly created Bounds object.     */    public Bounds createBounds(Class boundsInterface);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?