Skip to content

Instantly share code, notes, and snippets.

@denisyuanita
Created January 25, 2017 14:19
Show Gist options
  • Save denisyuanita/eef83fa037a9a9749b9109afc8f35b81 to your computer and use it in GitHub Desktop.
Save denisyuanita/eef83fa037a9a9749b9109afc8f35b81 to your computer and use it in GitHub Desktop.
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.belajarAbstract.Example;
/**
*
* @author Deniss
*/
public abstract class caffe {
public abstract String namaMakanan();
public abstract String namaMinuman();
public abstract int hargaMakanan();
public abstract int hargaMinuman();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment