Data hosted with ♥ by
Pastebin.com
-
Download Raw
-
See Original
/**
* Write a description of class Kelas here.
*
* @author Yemima Sutanto
* @version 1.0 (19 November 2018)
*/
public class Kelas
{
private String kelas_m;
public Kelas(String kelas)
{
kelas_m=kelas;
}
public String getKelas()
{
return kelas_m;
}
}