Software Engineering “im WiSe18"
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Beduerftiger.java 347B

123456789101112131415
  1. public class Beduerftiger {
  2. public String bFirstName;
  3. public String bLastName;
  4. public String bNeed;
  5. public Beduerftiger(){
  6. }
  7. public Beduerftiger(String theFirstName, String theLastName, String theNeed ){
  8. this.bFirstName = theFirstName;
  9. this.bLastName = theLastName;
  10. this.bNeed = theNeed;
  11. }
  12. }