View Javadoc
1   package com.google.checkstyle.test.chapter4formatting.rule462horizontalwhitespace;
2   
3   /** some javadoc. */
4   public class InputFormattedGenericWhitespaceEndsTheLine {
5     /** some javadoc. */
6     public boolean returnsGenericObjectAtEndOfLine(Object otherObject) {
7       return otherObject instanceof Enum<?>;
8     }
9   }