add a readObject(File) method to WTKXSerializer
-----------------------------------------------

                 Key: PIVOT-591
                 URL: https://issues.apache.org/jira/browse/PIVOT-591
             Project: Pivot
          Issue Type: Improvement
          Components: wtk
    Affects Versions: 1.5
         Environment: mac os x 10.6
            Reporter: A.J.
            Priority: Trivial


When loadind a WTKX file using WTKXSerializer readObject(InputStream) method, 
the serializer fails to load included WTKX because its location is not set.
Adding a method readObject(File file) such as this one should fix this issue : 

    public Object readObject(File file) throws IOException, 
SerializationException {
        return readObject(file.toURI().toURL());
    }


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to