raymondusk

Untitled

Nov 16th, 2020
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.39 KB | None | 0 0
  1. //Kelas yang dipanggil
  2. public class Kendaraan {
  3.     protected int jmlRoda;
  4.     protected String warna;
  5.  
  6.     public void setJmlRoda (int jmlRoda){
  7.         this.jmlRoda = jmlRoda;
  8.     }
  9.     public int getJmlRoda(){
  10.         return jmlRoda;
  11.     }
  12.     public void setWarna (String warna){
  13.         this.warna = warna;
  14.     }
  15.     public String getWarna(){
  16.         return warna;
  17.     }
  18. }
  19.  
Add Comment
Please, Sign In to add comment