From: Pavel V. <va...@us...> - 2002-09-02 15:28:56
|
Update of /cvsroot/javaprofiler/jpi/net/sourceforge/javaprofiler/jpi In directory usw-pr-cvs1:/tmp/cvs-serv4158 Modified Files: Snapshot.java Log Message: difference of snapshot Index: Snapshot.java =================================================================== RCS file: /cvsroot/javaprofiler/jpi/net/sourceforge/javaprofiler/jpi/Snapshot.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Snapshot.java 15 Jul 2002 21:40:58 -0000 1.2 --- Snapshot.java 2 Sep 2002 15:28:53 -0000 1.3 *************** *** 96,103 **** --- 96,118 ---- public String getName(); + /** + *Creates new snapshot that contains <code>this - B </code> and than restiction to + *configuration conf. Difference means that result contains all objects that + *are in <code>this</code> and are not in <code> B </code>. Restriction means + *that result contains objects that types are specified in configuration. + * + *@param B secand operand in substraction + *@param conf determines restriction, result contains only objects that types + * are specified here. + */ + public Snapshot differenceTo(Snapshot B, Snapshot.Configuration conf); + } /* * $Log$ + * Revision 1.3 2002/09/02 15:28:53 vachis + * difference of snapshot + * * Revision 1.2 2002/07/15 21:40:58 vachis * Configuration class added |