View Javadoc
1   package org.codehaus.mojo.findbugsmavenplugin.it;
2   
3   
4   import org.junit.*;
5   
6   
7   /**
8    * Hello world!
9    *
10   */
11  public class App implements Cloneable
12  {
13  
14      public static void main( String[] args )
15      {
16          System.out.println( "Hello World!" );
17      }
18  
19      public Object clone()
20      {
21          return null; // Does not call 'super.clone()'.
22      }
23  
24  }