This file contains 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
public class Radio { | |
private String power; | |
private int volum, volumMax; | |
/** Se construieste un aparat de radio fara parametri */ | |
public Radio() { | |
log("A fost creat un aparat de radio."); | |
> * In constructorul gol ar trebui sa setezi tu un power si volumMax default * | |
} |