View Javadoc

1   package def.configuration;
2   
3   /**
4    * @author Maria Odea Ching
5    */
6   public class AppSample
7   {
8       private String unusedVar = "UNUSED";
9   
10      /**
11       * The main method
12       *
13       * @param args  an array of strings that contains the arguments
14       */
15      public static void main( String[] args )
16      {
17          System.out.println( "Another Sample Application" );
18      }
19  
20      /**
21       * Unused method
22       *
23       * @param unusedParam
24       * @return a blank String
25       */
26      private String unusedMethod( String unusedParam )
27      {
28          System.out.println( "This is just a test." );
29  
30          return "";
31      }
32  }