Jump to content

Main public logs

Combined display of all available logs of Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 14:57, 19 December 2022 Kangtain talk contribs created page Pemrograman Berorientasi Obyek:Pembuatan interface di Java (Created page with "===1. Interface Phone=== <syntaxhighlight lang="java"> package PackIntervace; public interface Phone { int MAX_VOLUME = 100; int MIN_VOLUME = 0; void powerOn(); void powerOff(); void volumeUp(); void volumeDown(); } </syntaxhighlight> ===2. Class PhoneUser=== <syntaxhighlight lang="java"> package PackIntervace;public class PhoneUser { private Phone phone; public PhoneUser(Phone phone) { this.phone = phone; } void turn...")