* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package polimerfisme;
/**
*
* @author User
*/
public class filmindonesia {
/**
* @param args the command line arguments
*/
public String judul;
public String pemain;
public int tahun;
public void a(String judul){
System.out.println("Judul Film :" + getJudul());
}
public void b(String tempat, int tahun){
System.out.println("Nama Pemain :" + getPemain());
System.out.println("Tahun Rilis Film :" + getTahun());
}
/**
* @return the judul
*/
public String getJudul() {
return judul;
}
/**
* @param judul the judul to set
*/
public void setJudul(String judul) {
this.judul = judul;
}
/**
* @return the pemain
*/
public String getPemain() {
return pemain;
}
/**
* @param pemain the pemain to set
*/
public void setPemain(String pemain) {
this.pemain = pemain;
}
/**
* @return the tahun
*/
public int getTahun() {
return tahun;
}
/**
* @param tahun the tahun to set
*/
public void setTahun(int tahun) {
this.tahun = tahun;
}
}
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package polimerfisme;
/**
*
* @author User
*/
public class filmindonesiacomedi {
public void ketawa(){
System.out.println("Film ini bisa membuat perut sakit");
}
public static void main(String[] args) {
filmindonesia c = new filmindonesia();
c.setJudul("Bangun Lagi Donk Lupus");
c.a(c.getJudul());
c.setPemain("Miqdad Addausy"+"\nAcha Septriasa"+"\nKevin Julio"+"\nJeremy Christian");
c.setTahun(2013);
c.b(c.getPemain(), c.getTahun());
filmindonesiacomedi b = new filmindonesiacomedi();
b.ketawa();
}
}
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package polimerfisme;
/**
*
* @author User
*/
public class filmindonesiahoror {
public void takut(){
System.out.println("Film ini bisa membuat ketakutan");
}
public static void main(String[] args) {
filmindonesia z = new filmindonesia();
z.setJudul("Rumah Kentang");
z.a(z.getJudul());
z.setPemain("Shandy Aulia" + "\nTasya" + "\nGilang Dirgahari" + "\nChintami Atmanegara");
z.setTahun(2012);
z.b(z.getPemain(), z.getTahun());
filmindonesiahoror a = new filmindonesiahoror();
a.takut();
}
}
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package polimerfisme;
/**
*
* @author User
*/
public class filmindonesiamelow {
public void nangis(){
System.out.println("Film ini bisa membuat sedih");
}
public static void main(String[] args) {
filmindonesia x = new filmindonesia();
x.setJudul("Perahu Kertas");
x.a(x.getJudul());
x.setPemain("Maudy Ayunda" + "\nAdipati Dolken" + "\nReza Rahardian" + "\nKimberly Ryder");
x.setTahun(2012);
x.b(x.getPemain(), x.getTahun());
filmindonesiamelow y = new filmindonesiamelow();
System.out.println(x.getJudul()+ " ");
y.nangis();
}
}
Posted by 23.37 and have
0
komentar
, Published at
Tidak ada komentar:
Posting Komentar