Update of /cvsroot/fb-contrib/fb-contrib/src/com/mebigfatguy/fbcontrib/detect
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23207/src/com/mebigfatguy/fbcontrib/detect
Modified Files:
AbstractClassEmptyMethods.java
Log Message:
javadoc
Index: AbstractClassEmptyMethods.java
===================================================================
RCS file: /cvsroot/fb-contrib/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/AbstractClassEmptyMethods.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- AbstractClassEmptyMethods.java 4 Jan 2006 02:40:42 -0000 1.5
+++ AbstractClassEmptyMethods.java 13 Mar 2006 07:48:32 -0000 1.6
@@ -64,9 +64,10 @@
}
/**
- * clone this detector so that it can be a StatelessDetector
+ * clone this detector so that it can be a StatelessDetector.
*
* @return a clone of this object
+ * @throws CloneNotSupportedException never
*/
@Override
public Object clone() throws CloneNotSupportedException {
@@ -74,7 +75,7 @@
}
/**
- * overrides the visitor to check for abstract classes
+ * overrides the visitor to check for abstract classes.
*
* @param classContext the context object that holds the JavaClass being parsed
*/
@@ -86,9 +87,9 @@
}
/**
- * overrides the visitor to grab the method name and reset the state
+ * overrides the visitor to grab the method name and reset the state.
*
- * obj the method being parsed
+ * @param obj the method being parsed
*/
@Override
public void visitMethod(Method obj) {
@@ -97,7 +98,7 @@
}
/**
- * overrides the visitor to filter out constructors
+ * overrides the visitor to filter out constructors.
*
* @param obj the code to parse
*/
@@ -110,7 +111,7 @@
}
/**
- * overrides the visitor to look for empty methods or simple exception throwers
+ * overrides the visitor to look for empty methods or simple exception throwers.
*
* @param seen the opcode currently being parsed
*/
|