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