📄 boundsfactory.java
字号:
/************************************************************************************************** ** ** $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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -