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 { 11 } 12