[Fb-contrib-commit] SF.net SVN: fb-contrib: [642] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/
Brought to you by:
dbrosius
From: <dbr...@us...> - 2006-09-11 03:58:19
|
Revision: 642 http://svn.sourceforge.net/fb-contrib/?rev=642&view=rev Author: dbrosius Date: 2006-09-10 20:58:12 -0700 (Sun, 10 Sep 2006) Log Message: ----------- javadoc Modified Paths: -------------- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/UnrelatedReturnValues.java Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/UnrelatedReturnValues.java =================================================================== --- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/UnrelatedReturnValues.java 2006-09-10 16:18:57 UTC (rev 641) +++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/UnrelatedReturnValues.java 2006-09-11 03:58:12 UTC (rev 642) @@ -57,6 +57,11 @@ this.bugReporter = bugReporter; } + /** + * implements the visitor to create and destroy the stack and return types + * + * @param classContext the context object of the currently parsed class + */ public void visitClassContext(ClassContext classContext) { try { currentClass = classContext.getJavaClass(); @@ -130,6 +135,8 @@ /** * implements the visitor to find return values where the types of objects returned from the * method are related only by object. + * + * @param seen the opcode of the currently parsed instruction */ public void sawOpcode(int seen) { try { @@ -151,7 +158,7 @@ /** * looks for a common superclass or interface for all the passed in types * - * @param types the set of classes to look for a common super class or interface + * @param classes the set of classes to look for a common super class or interface * @return the type that is the common interface or superclass (not Object, tho). */ public JavaClass findCommonType(Set<JavaClass> classes) throws ClassNotFoundException { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |