File tree 5 files changed +9
-9
lines changed
src/java.desktop/share/classes
5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 1997, 2023 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 1997, 2024 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
48
48
* {@code ColorSpace} class. This representation of device independent and
49
49
* device dependent color spaces is based on the International Color Consortium
50
50
* Specification ICC.1:2001-12, File Format for Color Profiles (see
51
- * <a href="http ://www.color.org">http ://www.color.org</a>).
51
+ * <a href="https ://www.color.org">https ://www.color.org</a>).
52
52
* <p>
53
53
* Typically, a {@code Color} or {@code ColorModel} would be associated with an
54
54
* ICC Profile which is either an input, display, or output profile (see the ICC
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 1997, 2023 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 1997, 2024 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
64
64
* A representation of color profile data for device independent and device
65
65
* dependent color spaces based on the International Color Consortium
66
66
* Specification ICC.1:2001-12, File Format for Color Profiles, (see
67
- * <a href="http ://www.color.org"> http ://www.color.org</a>).
67
+ * <a href="https ://www.color.org"> https ://www.color.org</a>).
68
68
* <p>
69
69
* An {@code ICC_ColorSpace} object can be constructed from an appropriate
70
70
* {@code ICC_Profile}. Typically, an {@code ICC_ColorSpace} would be associated
Original file line number Diff line number Diff line change @@ -690,7 +690,7 @@ private int getRenderingIntent (ICC_Profile profile) {
690
690
* shall be set to zero. Thus, we are ignoring two most significant
691
691
* bytes here.
692
692
*
693
- * See http ://www.color.org/ICC1v42_2006-05.pdf, section 7.2.15.
693
+ * See https ://www.color.org/ICC1v42_2006-05.pdf, section 7.2.15.
694
694
*/
695
695
return ((header [index +2 ] & 0xff ) << 8 ) |
696
696
(header [index +3 ] & 0xff );
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2000, 2017 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2000, 2024 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
101
101
* <!-- WBMP plugin -->
102
102
* <tr>
103
103
* <th scope="row">
104
- * <a href="http ://www.wapforum.org/what/technical/SPEC-WAESpec-19990524.pdf">
104
+ * <a href="https ://www.wapforum.org/what/technical/SPEC-WAESpec-19990524.pdf">
105
105
* WBMP</a>
106
106
* <td>yes
107
107
* <td>yes
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2005, 2018 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2005, 2024 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -1008,7 +1008,7 @@ public final class BaselineTIFFTagSet extends TIFFTagSet {
1008
1008
/**
1009
1009
* Constant specifying the "ICC Profile" tag.
1010
1010
*
1011
- * @see <a href="http ://www.color.org/ICC1V42.pdf">ICC Specification, section B.4: Embedding ICC profiles in TIFF files</a>
1011
+ * @see <a href="https ://www.color.org/ICC1V42.pdf">ICC Specification, section B.4: Embedding ICC profiles in TIFF files</a>
1012
1012
*/
1013
1013
public static final int TAG_ICC_PROFILE = 34675 ;
1014
1014
You can’t perform that action at this time.
0 commit comments