Skip to content

Instantly share code, notes, and snippets.

@yogsma
Created September 13, 2017 02:21
Show Gist options
  • Save yogsma/2e1a0168353355250a4d7bd778ea1ecd to your computer and use it in GitHub Desktop.
Save yogsma/2e1a0168353355250a4d7bd778ea1ecd to your computer and use it in GitHub Desktop.
package com.betterjavacode.designpatterns.adapterexample;
public class EuropeSocket implements IEuropeSocket {
public void getElectricity() {
System.out.println("Get electricity of 120 V");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment