You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
871 B
47 lines
871 B
/*
|
|
* Copyright (c) 2001, 2005, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package com.sun.imageio.plugins.jpeg;
|
|
|
|
import java.util.ListResourceBundle;
|
|
|
|
public class JPEGImageReaderResources extends ListResourceBundle {
|
|
|
|
public JPEGImageReaderResources() {}
|
|
|
|
protected Object[][] getContents() {
|
|
return new Object[][] {
|
|
|
|
{Integer.toString(JPEGImageReader.WARNING_NO_EOI),
|
|
"Truncated File - Missing EOI marker"},
|
|
{Integer.toString(JPEGImageReader.WARNING_NO_JFIF_IN_THUMB),
|
|
"JFIF markers not allowed in JFIF JPEG thumbnail; ignored"},
|
|
{Integer.toString(JPEGImageReader.WARNING_IGNORE_INVALID_ICC),
|
|
"Embedded color profile is invalid; ignored"}
|
|
|
|
};
|
|
}
|
|
}
|