[BAEL-10836] - Moved Java8CollectionCleanupUnitTest, AddElementsUnitTest and articles

This commit is contained in:
amit2103
2018-12-29 20:11:40 +05:30
parent bb435c3cbf
commit cf3d7b69e6
5 changed files with 1 additions and 1 deletions
@@ -0,0 +1,28 @@
package com.baeldung.list;
public class Flower {
private String name;
private int petals;
public Flower(String name, int petals) {
this.name = name;
this.petals = petals;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getPetals() {
return petals;
}
public void setPetals(int petals) {
this.petals = petals;
}
}