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.javarush.test.level32.lesson15.big01; | |
import javax.swing.*; | |
import javax.swing.text.html.HTMLDocument; | |
import javax.swing.text.html.HTMLEditorKit; | |
import java.io.*; | |
public class Controller { | |
private View view; | |
private HTMLDocument document; |
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.javarush.test.level31.lesson15.big01; | |
import com.javarush.test.level31.lesson15.big01.exception.WrongZipFileException; | |
import java.io.IOException; | |
public class Archiver { | |
public static void main(String[] args) throws IOException { | |
Operation operation = null; |
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.javarush.test.level30.lesson15.big01.client; | |
import java.io.IOException; | |
import java.text.SimpleDateFormat; | |
import java.util.*; | |
public class BotClient extends Client { | |
private static Set<String> botNames = new HashSet<>(); |
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.javarush.test.level28.lesson15.big01; | |
import com.javarush.test.level28.lesson15.big01.model.Model; | |
import com.javarush.test.level28.lesson15.big01.model.MoikrugStrategy; | |
import com.javarush.test.level28.lesson15.big01.model.Provider; | |
import com.javarush.test.level28.lesson15.big01.view.HtmlView; | |
public class Aggregator { | |
public static void main(String[] args) { |
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.javarush.test.level27.lesson15.big01.ad; | |
public class Advertisement { | |
private Object content; | |
private String name; | |
private long initialAmount; | |
private int hits; | |
private int duration; | |
private long amountPerOneDisplaying; |
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.javarush.test.level26.lesson15.big01; | |
import com.javarush.test.level26.lesson15.big01.command.CommandExecutor; | |
import com.javarush.test.level26.lesson15.big01.exception.InterruptOperationException; | |
import java.util.Locale; | |
import java.util.ResourceBundle; | |
public class CashMachine { | |
public static final String RESOURCE_PATH = "com.javarush.test.level26.lesson15.big01.resources."; |