org.w3c.rdfpic.core
Interface ImgMeta

All Known Implementing Classes:
JpegMeta

public interface ImgMeta

Instances of ImgMeta classes must handle reading and writing text comments. (The idea is to do this to images.) A read or write is complete i.e. you write the entire comment at once, as opposed to doing so in increments as with A Writer/Reader. This makes a crash while writing much less likely so that data corruption isn't such a danger.


Method Summary
 boolean canRead()
           
 boolean canWrite()
           
 java.lang.String read()
           
 void write(java.lang.String comment)
           
 

Method Detail

read

public java.lang.String read()
                      throws java.io.IOException

write

public void write(java.lang.String comment)
           throws java.io.IOException

canRead

public boolean canRead()

canWrite

public boolean canWrite()