Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /**
  2. * Write a description of class Kelas here.
  3. *
  4. * @author Yemima Sutanto
  5. * @version 1.0 (19 November 2018)
  6. */
  7. public class Kelas
  8. {
  9. private String kelas_m;
  10. public Kelas(String kelas)
  11. {
  12. kelas_m=kelas;
  13. }
  14. public String getKelas()
  15. {
  16. return kelas_m;
  17. }
  18. }