KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > it > stefanochizzolini > clown > documents > contents > colorSpaces > CalRGBColorSpace


1 /*
2   Copyright © 2006 Stefano Chizzolini. http://clown.stefanochizzolini.it
3
4   Contributors:
5     * Stefano Chizzolini (original code developer, info@stefanochizzolini.it):
6       contributed code is Copyright © 2006 by Stefano Chizzolini.
7
8   This file should be part of the source code distribution of "PDF Clown library"
9   (the Program): see the accompanying README files for more info.
10
11   This Program is free software; you can redistribute it and/or modify it under
12   the terms of the GNU General Public License as published by the Free Software
13   Foundation; either version 2 of the License, or (at your option) any later version.
14
15   This Program is distributed in the hope that it will be useful, but WITHOUT ANY
16   WARRANTY, either expressed or implied; without even the implied warranty of
17   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License for more details.
18
19   You should have received a copy of the GNU General Public License along with this
20   Program (see README files); if not, go to the GNU website (http://www.gnu.org/).
21
22   Redistribution and use, with or without modification, are permitted provided that such
23   redistributions retain the above copyright notice, license and disclaimer, along with
24   this list of conditions.
25 */

26
27 package it.stefanochizzolini.clown.documents.contents.colorSpaces;
28
29 import it.stefanochizzolini.clown.documents.Document;
30 import it.stefanochizzolini.clown.objects.PdfDirectObject;
31 import it.stefanochizzolini.clown.objects.PdfIndirectObject;
32 import it.stefanochizzolini.clown.util.NotImplementedException;
33
34 /**
35   CIE-based ABC single-transformation-stage color space (A, B, and C
36   represent calibrated red, green, and blue color values) [PDF:1.6:4.5.4].
37 */

38 public class CalRGBColorSpace
39   extends CIEBasedColorSpace
40 {
41   // <class>
42
// <dynamic>
43
// <constructors>
44
// TODO:IMPL!!!
45
// protected CalRGBColorSpace(
46
// Document context,
47
// PdfArray baseDataObject
48
// )
49
// {super(context,baseDataObject);}
50

51   CalRGBColorSpace(
52     PdfDirectObject baseObject,
53     PdfIndirectObject container
54     )
55   {super(baseObject,container);}
56   // </constructors>
57

58   // <interface>
59
// <public>
60
public Object JavaDoc clone(
61     Document context
62     )
63   {throw new NotImplementedException();}
64 // TODO:IMPL!!!
65
// </public>
66
// </interface>
67
// </dynamic>
68
// </class>
69
}
Popular Tags