renamed all modules

This commit is contained in:
Andy Clement
2014-01-15 11:36:24 -08:00
parent 342420b2ed
commit ceef61cf98
1055 changed files with 301 additions and 259 deletions

View File

@@ -0,0 +1,28 @@
package data;
public class HelloWorld002 {
public void greet() {
System.out.println("Greet from HelloWorld 2");
}
public String getValue() {
return "message from HelloWorld002";
}
public String getValueWithParams(String a, String b) {
return "message with inserts " + b + " and " + a;
}
public static String getStaticValueWithParams(String a, String b) {
return "static message with inserts " + b + " and " + a;
}
public static String getStaticValueWithPrimitiveParams(String a, int i, char ch) {
return "message with inserts " + ch + " and " + i + " and " + a;
}
public static String getStaticValueWithPrimitiveDSParams(long l, String a, double d, boolean b) {
return "message with inserts " + b + " and " + d + " and " + a + " and " + l;
}
}