
/**
 * Created by ${Tomasz} Socket produces constant 120 voltage current
 */
public class Socket {
	public Volt getVoltage(){
		return new Volt(120); //creates new volt object with '120'
	}
}
