From: Pavel V. <va...@us...> - 2002-09-07 19:42:58
|
Update of /cvsroot/javaprofiler/jpi/net/sourceforge/javaprofiler/jpi In directory usw-pr-cvs1:/tmp/cvs-serv2668 Modified Files: Snapshot.java Log Message: add diferenceTo method with no explicit configuration Index: Snapshot.java =================================================================== RCS file: /cvsroot/javaprofiler/jpi/net/sourceforge/javaprofiler/jpi/Snapshot.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** Snapshot.java 2 Sep 2002 15:28:53 -0000 1.3 --- Snapshot.java 7 Sep 2002 19:42:55 -0000 1.4 *************** *** 108,115 **** --- 108,127 ---- public Snapshot differenceTo(Snapshot B, Snapshot.Configuration conf); + /** + * Creates new snapshot that contains <code>this - B </code> + * Difference means that result contains all objects that + * are in <code>this</code> and are not in <code> B </code>. + * + *@param B secand operand in substraction + */ + public Snapshot differenceTo(Snapshot B); + } /* * $Log$ + * Revision 1.4 2002/09/07 19:42:55 vachis + * add diferenceTo method with no explicit configuration + * * Revision 1.3 2002/09/02 15:28:53 vachis * difference of snapshot |