This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | package week1.alexwawo.id.ac.umn; | |
| public class Main { | |
| public static void main(String[] args) { | |
| CafeCalculator kasir = new CafeCalculator(); | |
| Capucino order1 = new Capucino(1); | |
| Capucino order2 = new Capucino(3); | |
| kasir.addOrder(order1); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?xml version="1.0" encoding="utf-8"?> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| xmlns:tools="http://schemas.android.com/tools"> | |
| <uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> | |
| <uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC" /> | |
| <uses-permission android:name="android.permission.POST_NOTIFICATIONS" /> | |
| <application | |
| android:allowBackup="true" | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // Deklarasi Class | |
| class Mobil { | |
| // variable/property/attribute yang dimiliki oleh Mobil | |
| // bisa disebut juga data diri yang akan dimiliki oleh objek Mobil nantinya | |
| int jumlah_roda; | |
| int jumlah_kursi; | |
| String warna; | |
| // Method atau fungsi yang dimiliki oleh Mobil | |
| // Kemampuan yang bisa dilakukan oleh objek Mobil nantinya. | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | package week1.alexwawo.id.ac.umn; | |
| public class Week4 { | |
| public static void main(String[] args) { | |
| // TODO Auto-generated method stub | |
| Rumah melvin = new Rumah("Melvin", 2, 3, true); | |
| System.out.println("Pemilik: " + melvin.get_pemilik()); | |
| // Melvin jual rumah ke Malvin | |
| melvin.set_pemilik("Malvin"); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?xml version="1.0" encoding="utf-8"?> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| xmlns:tools="http://schemas.android.com/tools"> | |
| <application | |
| android:allowBackup="true" | |
| android:dataExtractionRules="@xml/data_extraction_rules" | |
| android:fullBackupContent="@xml/backup_rules" | |
| android:icon="@mipmap/ic_launcher" | |
| android:label="@string/app_name" | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?xml version="1.0" encoding="utf-8"?> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| xmlns:tools="http://schemas.android.com/tools"> | |
| <application | |
| android:allowBackup="true" | |
| android:dataExtractionRules="@xml/data_extraction_rules" | |
| android:fullBackupContent="@xml/backup_rules" | |
| android:icon="@mipmap/ic_launcher" | |
| android:label="@string/app_name" | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?xml version="1.0" encoding="utf-8"?> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| xmlns:tools="http://schemas.android.com/tools"> | |
| <uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> | |
| <uses-permission android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PLAYBACK" /> | |
| <uses-permission android:name="android.permission.POST_NOTIFICATIONS" /> | |
| <application | |
| android:allowBackup="true" | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | package com.example.myapplication | |
| import android.os.Bundle | |
| import android.util.Log | |
| import androidx.activity.enableEdgeToEdge | |
| import androidx.appcompat.app.AppCompatActivity | |
| import androidx.core.view.ViewCompat | |
| import androidx.core.view.WindowInsetsCompat | |
| import androidx.work.Constraints | |
| import androidx.work.NetworkType | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | package com.example.firebasedemowkwk | |
| import android.os.Bundle | |
| import android.widget.Button | |
| import android.widget.EditText | |
| import androidx.activity.enableEdgeToEdge | |
| import androidx.appcompat.app.AppCompatActivity | |
| import androidx.core.view.ViewCompat | |
| import androidx.core.view.WindowInsetsCompat | |
| import com.google.firebase.Firebase | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | package id.ac.umn.if633_1921.animasiproperty; | |
| import androidx.appcompat.app.AppCompatActivity; | |
| import android.animation.AnimatorSet; | |
| import android.animation.ObjectAnimator; | |
| import android.os.Bundle; | |
| import android.view.View; | |
| import android.widget.Button; | 
NewerOlder