Merge branch 'master' of https://github.com/iluwatar/java-design-patterns
This commit is contained in:
commit
6848dd020e
@ -36,7 +36,7 @@ import org.slf4j.LoggerFactory;
|
||||
* <p>
|
||||
* It is responsible for reading and loading the contents of a given file.
|
||||
*/
|
||||
public class FileLoader implements Serializable{
|
||||
public class FileLoader implements Serializable {
|
||||
|
||||
/**
|
||||
* Generated serial version UID
|
||||
|
@ -30,7 +30,7 @@ import java.io.Serializable;
|
||||
* <p>
|
||||
* It is responsible for reacting to the user's actions and update the View component.
|
||||
*/
|
||||
public class FileSelectorPresenter implements Serializable{
|
||||
public class FileSelectorPresenter implements Serializable {
|
||||
|
||||
/**
|
||||
* Generated serial version UID
|
||||
|
@ -28,7 +28,7 @@ import java.io.Serializable;
|
||||
* This interface represents the View component in the Model-View-Presenter pattern. It can be
|
||||
* implemented by either the GUI components, or by the Stub.
|
||||
*/
|
||||
public interface FileSelectorView extends Serializable{
|
||||
public interface FileSelectorView extends Serializable {
|
||||
|
||||
/**
|
||||
* Opens the view.
|
||||
|
@ -28,7 +28,7 @@ import java.io.IOException;
|
||||
/**
|
||||
* Application Test Entrypoint
|
||||
*/
|
||||
public class AppTest{
|
||||
public class AppTest {
|
||||
@Test
|
||||
public void test() throws IOException {
|
||||
String[] args = {};
|
||||
|
@ -28,7 +28,7 @@ import java.io.IOException;
|
||||
/**
|
||||
* Application Test Entrypoint
|
||||
*/
|
||||
public class AppTest{
|
||||
public class AppTest {
|
||||
@Test
|
||||
public void test() throws IOException {
|
||||
String[] args = {};
|
||||
|
@ -35,7 +35,7 @@ import com.iluwatar.throttling.CallsCount;
|
||||
* @author drastogi
|
||||
*
|
||||
*/
|
||||
public class ThrottleTimerImpl implements Throttler{
|
||||
public class ThrottleTimerImpl implements Throttler {
|
||||
|
||||
private int throttlePeriod;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user