Made meta data classes package private for now. Might expose later.

This commit is contained in:
Harald Kuhr 2009-10-03 17:53:59 +02:00
parent fea55e3df0
commit 4848a3caff
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ import java.util.List;
* @see <a href="http://www.awaresystems.be/imaging/tiff/tifftags/privateifd/exif.html">Aware systems TIFF tag reference</a> * @see <a href="http://www.awaresystems.be/imaging/tiff/tifftags/privateifd/exif.html">Aware systems TIFF tag reference</a>
* @see <a href="http://partners.adobe.com/public/developer/tiff/index.html">Adobe TIFF developer resources</a> * @see <a href="http://partners.adobe.com/public/developer/tiff/index.html">Adobe TIFF developer resources</a>
*/ */
public final class PSDEXIF1Data extends PSDImageResource { final class PSDEXIF1Data extends PSDImageResource {
// protected byte[] mData; // protected byte[] mData;
protected Directory mDirectory; protected Directory mDirectory;

View File

@ -19,7 +19,7 @@ import java.nio.charset.Charset;
* @see <a href="http://www.adobe.com/products/xmp/">Adobe Extensible Metadata Platform (XMP)</a> * @see <a href="http://www.adobe.com/products/xmp/">Adobe Extensible Metadata Platform (XMP)</a>
* @see <a href="http://www.adobe.com/devnet/xmp/">Adobe XMP Developer Center</a> * @see <a href="http://www.adobe.com/devnet/xmp/">Adobe XMP Developer Center</a>
*/ */
public final class PSDXMPData extends PSDImageResource { final class PSDXMPData extends PSDImageResource {
protected byte[] mData; protected byte[] mData;
PSDXMPData(final short pId, final ImageInputStream pInput) throws IOException { PSDXMPData(final short pId, final ImageInputStream pInput) throws IOException {