Formatted all files to the same standard

This commit is contained in:
matthew
2014-10-08 13:42:12 +01:00
parent 53a2a8b150
commit 3da9ad5469
151 changed files with 952 additions and 870 deletions
@@ -1,62 +1,65 @@
package com.iluwatar;
/**
* 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.
* 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 {
/**
* Opens the view.
*/
public void open();
/**
* Closes the view.
*/
public void close();
/**
* @return True, if the view is opened, false otherwise.
*/
public boolean isOpened();
/**
* Sets the presenter component, to the one given as parameter.
*
* @param presenter The new presenter component.
* @param presenter
* The new presenter component.
*/
public void setPresenter(FileSelectorPresenter presenter);
/**
* @return The presenter Component.
*/
public FileSelectorPresenter getPresenter();
/**
* Sets the file's name, to the value given as parameter.
*
* @param name The new name of the file.
* @param name
* The new name of the file.
*/
public void setFileName(String name);
/**
* @return The name of the file.
*/
public String getFileName();
/**
* Displays a message to the users.
*
* @param message The message to be displayed.
* @param message
* The message to be displayed.
*/
public void showMessage(String message);
/**
* Displays the data to the view.
*
* @param data The data to be written.
* @param data
* The data to be written.
*/
public void displayData(String data);
}