KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > nutch > io > WritableComparable


1 /* Copyright (c) 2003 The Nutch Organization. All rights reserved. */
2 /* Use subject to the conditions in http://www.nutch.org/LICENSE.txt. */
3
4 package net.nutch.io;
5
6 /** An interface which extends both {@link Writable} and {@link Comparable}.
7  *
8  * @author Doug Cutting
9  */

10 public interface WritableComparable extends Writable, Comparable JavaDoc {
11 }
12
Popular Tags