]> source.dussan.org Git - sonarqube.git/blob
57228b38d644d2c35f9235cca385be5371f0a86e
[sonarqube.git] /
1 package org.codehaus.sonar.samples.samplewithmodules.submodulea1;
2
3 public class HelloA1 {
4         private int i;
5         private HelloA1() {
6                 
7         }
8         
9         public void hello() {
10                 System.out.println("hello" + " world");
11         }
12         
13         protected String getHello() {
14                 return "hello";
15         }
16 }