Guest User

Untitled

a guest
Jun 18th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. package vsue.tests;
  2. import java.io.Serializable;
  3. import java.io.IOException;
  4.  
  5. public class MainClass implements Serializable{
  6.  
  7. /**
  8. *
  9. */
  10. private static final long serialVersionUID = 5558932386332506362L;
  11. public String test[]= {"hallo","alles","Roger"};
  12. private int a = 33;
  13. public String sch = "yea";
  14. public boolean hasBoolean = true;
  15. String[] getString() {
  16. return test;
  17. }
  18.  
  19. int getInt() {
  20. return a;
  21. }
  22.  
  23. void druck(String s) throws IOException {
  24. System.out.println(s);
  25. }
  26.  
  27. }
Add Comment
Please, Sign In to add comment