⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jpegstreammetadataformatresources.java

📁 JAVA 所有包
💻 JAVA
字号:
/* * @(#)JPEGStreamMetadataFormatResources.java	1.7 05/11/17 * * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.imageio.plugins.jpeg;import java.util.ListResourceBundle;public class JPEGStreamMetadataFormatResources        extends JPEGMetadataFormatResources {    public JPEGStreamMetadataFormatResources() {}    protected Object[][] getContents() {        // return a copy of commonContents; in theory we want a deep clone        // of commonContents, but since it only contains (immutable) Strings,        // this shallow copy is sufficient        Object[][] commonCopy = new Object[commonContents.length][2];        for (int i = 0; i < commonContents.length; i++) {            commonCopy[i][0] = commonContents[i][0];            commonCopy[i][1] = commonContents[i][1];        }        return commonCopy;    }}

⌨️ 快捷键说明

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