1 /* 2 * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved. 3 */ 4 package com.tc.util.diff; 5 6 7 /** 8 * An object that can compute a list of differences between it and another object. 9 */ 10 public interface Differenceable { 11 12 void addDifferences(DifferenceContext context, Object that); 13 14 } 15