Author: jahewson
Date: Sun May  3 18:30:25 2015
New Revision: 1677473

URL: http://svn.apache.org/r1677473
Log:
PDFBOX-1900: Non-final variable for custom CMYK use case

Added:
    
pdfbox/trunk/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/graphics/color/PDDeviceCMYKTest.java
   (with props)
Modified:
    
pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/graphics/color/PDDeviceCMYK.java

Modified: 
pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/graphics/color/PDDeviceCMYK.java
URL: 
http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/graphics/color/PDDeviceCMYK.java?rev=1677473&r1=1677472&r2=1677473&view=diff
==============================================================================
--- 
pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/graphics/color/PDDeviceCMYK.java
 (original)
+++ 
pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/graphics/color/PDDeviceCMYK.java
 Sun May  3 18:30:25 2015
@@ -37,7 +37,7 @@ import java.io.InputStream;
 public class PDDeviceCMYK extends PDDeviceColorSpace
 {
     /**  The single instance of this class. */
-    public static final PDDeviceCMYK INSTANCE;
+    public static PDDeviceCMYK INSTANCE;
     static
     {
         try

Added: 
pdfbox/trunk/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/graphics/color/PDDeviceCMYKTest.java
URL: 
http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/graphics/color/PDDeviceCMYKTest.java?rev=1677473&view=auto
==============================================================================
--- 
pdfbox/trunk/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/graphics/color/PDDeviceCMYKTest.java
 (added)
+++ 
pdfbox/trunk/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/graphics/color/PDDeviceCMYKTest.java
 Sun May  3 18:30:25 2015
@@ -0,0 +1,41 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.pdfbox.pdmodel.graphics.color;
+
+import java.io.IOException;
+import junit.framework.TestCase;
+
+/**
+ * Test for power user creation of a custom default CMYK color space.
+ *
+ * @author John Hewson
+ */
+public class PDDeviceCMYKTest extends TestCase
+{
+    private void testCMYK() throws IOException
+    {
+        PDDeviceCMYK.INSTANCE = new CustomDeviceCMYK();
+    }
+    
+    private static class CustomDeviceCMYK extends PDDeviceCMYK
+    {
+        protected CustomDeviceCMYK() throws IOException
+        {
+        }
+    }
+}

Propchange: 
pdfbox/trunk/pdfbox/src/test/java/org/apache/pdfbox/pdmodel/graphics/color/PDDeviceCMYKTest.java
------------------------------------------------------------------------------
    svn:eol-style = native


Reply via email to