document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /**
  2.  *   JAVA DRAWING APP
  3.  *   Author  : Johnivan Aldo S
  4.  *           : Yeremia Dhyan L
  5.  *   Version : 7 Januari 2021
  6.  *  
  7.  *   Kelas tool untuk membedakan type dari setiap tool yang ada berdasarkan pemilihan user
  8.  */
  9.  
  10. public class Tool
  11. {
  12.     public int toolType;
  13.     public Tool (int type)
  14.     {
  15.        toolType = type;
  16.     }
  17. }
  18.  
');