src/java.desktop/share/classes/java/awt/image/package-info.java
author tvaleev
Thu, 04 Oct 2018 12:40:55 -0700
changeset 52248 2e330da7cbf4
parent 47216 71c04702a3d5
permissions -rw-r--r--
8211300: Convert C-style array declarations in JDK client code Reviewed-by: prr, serb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
44135
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
     1
/*
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
     2
 * Copyright (c) 1998, 2017, Oracle and/or its affiliates. All rights reserved.
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
     4
 *
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    10
 *
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    15
 * accompanied this code).
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    16
 *
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    20
 *
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    23
 * questions.
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    24
 */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
44135
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    26
/**
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    27
 * Provides classes for creating and modifying images. Images are processed
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    28
 * using a streaming framework that involves an image producer, optional image
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    29
 * filters, and an image consumer. This framework makes it possible to
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    30
 * progressively render an image while it is being fetched and generated.
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    31
 * Moreover, the framework allows an application to discard the storage used by
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    32
 * an image and to regenerate it at any time. This package provides a number of
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    33
 * image producers, consumers, and filters that you can configure for your image
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    34
 * processing needs.
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    35
 *
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    36
 * @since 1.0
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    37
 */
84ca73957ced 6622944: Use package-info.java instead of package.html within awt packages
serb
parents: 25859
diff changeset
    38
package java.awt.image;