Bael 6556 3 (#4382)

* Added parent module on poms that have no parent defined

* Removed dependency reduced pom from undertow module

* [BAEL-6556] - Next set of renames of testcases

* [BAEL-6556] - Next set of renames of testcases

* [BAEL-6556] - Next set of renames of testcases

* [BAEL-6556] - Next set of renames of testcases
This commit is contained in:
Amit Pandey
2018-06-01 16:42:51 +05:30
committed by Grzegorz Piwowarek
parent cfa5f07c96
commit 7206e64bef
150 changed files with 187 additions and 182 deletions
@@ -1,7 +1,7 @@
package com.baeldung.keyword;
import com.baeldung.keyword.superkeyword.SuperSub;
import com.baeldung.keyword.thiskeyword.KeywordTest;
import com.baeldung.keyword.thiskeyword.KeywordUnitTest;
/**
* Created by Gebruiker on 5/14/2018.
@@ -9,7 +9,7 @@ import com.baeldung.keyword.thiskeyword.KeywordTest;
public class KeywordDemo {
public static void main(String[] args) {
KeywordTest keyword = new KeywordTest();
KeywordUnitTest keyword = new KeywordUnitTest();
SuperSub child = new SuperSub("message from the child class");
}
@@ -1,17 +1,17 @@
package com.baeldung.keyword.thiskeyword;
public class KeywordTest {
public class KeywordUnitTest {
private String name;
private int age;
public KeywordTest() {
public KeywordUnitTest() {
this("John", 27);
this.printMessage();
printInstance(this);
}
public KeywordTest(String name, int age) {
public KeywordUnitTest(String name, int age) {
this.name = name;
this.age = age;
}
@@ -20,11 +20,11 @@ public class KeywordTest {
System.out.println("invoked by this");
}
public void printInstance(KeywordTest thisKeyword) {
public void printInstance(KeywordUnitTest thisKeyword) {
System.out.println(thisKeyword);
}
public KeywordTest getCurrentInstance() {
public KeywordUnitTest getCurrentInstance() {
return this;
}
@@ -33,8 +33,8 @@ public class KeywordTest {
boolean isInnerClass = true;
public ThisInnerClass() {
KeywordTest thisKeyword = KeywordTest.this;
String outerString = KeywordTest.this.name;
KeywordUnitTest thisKeyword = KeywordUnitTest.this;
String outerString = KeywordUnitTest.this.name;
System.out.println(this.isInnerClass);
}
}