< prev index next >
src/java.desktop/share/classes/com/sun/imageio/plugins/jpeg/MarkerSegment.java
Print this page
@@ -49,12 +49,12 @@
itself. Meaningful only if constructed from a stream */
byte [] data = null; // Raw segment data, used for unrecognized segments
boolean unknown = false; // Set to true if the tag is not recognized
/**
- * Constructor for creating <code>MarkerSegment</code>s by reading
- * from an <code>ImageInputStream</code>.
+ * Constructor for creating {@code MarkerSegment}s by reading
+ * from an {@code ImageInputStream}.
*/
MarkerSegment(JPEGBuffer buffer) throws IOException {
buffer.loadBuf(3); // tag plus length
tag = buffer.buf[buffer.bufPtr++] & 0xff;
< prev index next >