-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Marcel Pfotenhauer
committed
May 28, 2019
1 parent
53af251
commit db4f490
Showing
7 changed files
with
271 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
98 changes: 98 additions & 0 deletions
98
src/test/java/com/xceptance/neodymium/testclasses/datautils/TestCompoundClass.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
package com.xceptance.neodymium.testclasses.datautils; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
public class TestCompoundClass | ||
{ | ||
enum Level | ||
{ | ||
LOW, | ||
MEDIUM, | ||
HIGH | ||
} | ||
|
||
String clubCardNumber; | ||
|
||
int age; | ||
|
||
TestCreditCard creditCard; | ||
|
||
List<String> names; | ||
|
||
List<TestPerson> persons; | ||
|
||
Map<String, String> keyValueMap; | ||
|
||
Level level; | ||
|
||
public List<TestPerson> getPersons() | ||
{ | ||
return persons; | ||
} | ||
|
||
public void setPersons(List<TestPerson> persons) | ||
{ | ||
this.persons = persons; | ||
} | ||
|
||
public List<String> getNames() | ||
{ | ||
return names; | ||
} | ||
|
||
public void setNames(List<String> names) | ||
{ | ||
this.names = names; | ||
} | ||
|
||
public int getAge() | ||
{ | ||
return age; | ||
} | ||
|
||
public void setAge(int age) | ||
{ | ||
this.age = age; | ||
} | ||
|
||
public String getClubCardNumber() | ||
{ | ||
return clubCardNumber; | ||
} | ||
|
||
public void setClubCardNumber(String clubCardNumber) | ||
{ | ||
this.clubCardNumber = clubCardNumber; | ||
} | ||
|
||
public TestCreditCard getCreditCard() | ||
{ | ||
return creditCard; | ||
} | ||
|
||
public void setCreditCard(TestCreditCard creditCard) | ||
{ | ||
this.creditCard = creditCard; | ||
} | ||
|
||
public Map<String, String> getKeyValueMap() | ||
{ | ||
return keyValueMap; | ||
} | ||
|
||
public void setKeyValueMap(Map<String, String> keyValueMap) | ||
{ | ||
this.keyValueMap = keyValueMap; | ||
} | ||
|
||
public Level getLevel() | ||
{ | ||
return level; | ||
} | ||
|
||
public void setLevel(Level level) | ||
{ | ||
this.level = level; | ||
} | ||
} |
Oops, something went wrong.