sun.java2d.cmm
public class: ProfileDeferralInfo [javadoc |
source]
java.lang.Object
java.io.InputStream
sun.java2d.cmm.ProfileDeferralInfo
All Implemented Interfaces:
Closeable
A class to pass information about a profile to be loaded from
a file to the static getInstance(InputStream) method of
ICC_Profile. Loading of the profile data and initialization
of the CMM is to be deferred as long as possible.
| Field Summary |
|---|
| public int | colorSpaceType | |
| public int | numComponents | |
| public int | profileClass | |
| public String | filename | |
| Constructor: |
public ProfileDeferralInfo(String fn,
int type,
int ncomp,
int pclass) {
super();
filename = fn;
colorSpaceType = type;
numComponents = ncomp;
profileClass = pclass;
}
|
| Method from sun.java2d.cmm.ProfileDeferralInfo Summary: |
|---|
|
read |
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from sun.java2d.cmm.ProfileDeferralInfo Detail: |
public int read() throws IOException {
return 0;
}
Implements the abstract read() method of InputStream. |