geotiffmetadata.java
来自「world wind java sdk 源码」· Java 代码 · 共 36 行
JAVA
36 行
/* Copyright (C) 2001, 2008 United States Government as represented by the Administrator of the National Aeronautics and Space Administration. All Rights Reserved. */package gov.nasa.worldwind.formats.tiff;import org.w3c.dom.Node;import javax.imageio.metadata.IIOMetadata;import javax.imageio.metadata.IIOInvalidTreeException;/** * @author brownrigg * @version $Id: GeotiffMetaData.java 6539 2008-09-10 16:39:49Z rick $ */public class GeotiffMetaData extends IIOMetadata { public boolean isReadOnly() { return false; //To change body of implemented methods use File | Settings | File Templates. } public Node getAsTree(String formatName) { return null; //To change body of implemented methods use File | Settings | File Templates. } public void mergeTree(String formatName, Node root) throws IIOInvalidTreeException { //To change body of implemented methods use File | Settings | File Templates. } public void reset() { //To change body of implemented methods use File | Settings | File Templates. }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?