Resolves checkstyle errors for execute-around extension-objects (#1071)
* Reduces checkstyle errors in execute-around * Reduces checkstyle errors in extension-objects
This commit is contained in:
parent
5ae2ce6e2e
commit
4dae1fae57
@ -29,16 +29,15 @@ import java.io.IOException;
|
||||
* The Execute Around idiom specifies some code to be executed before and after a method. Typically
|
||||
* the idiom is used when the API has methods to be executed in pairs, such as resource
|
||||
* allocation/deallocation or lock acquisition/release.
|
||||
* <p>
|
||||
* In this example, we have {@link SimpleFileWriter} class that opens and closes the file for the
|
||||
* user. The user specifies only what to do with the file by providing the {@link FileWriterAction}
|
||||
* implementation.
|
||||
*
|
||||
* <p>In this example, we have {@link SimpleFileWriter} class that opens and closes the file for
|
||||
* the user. The user specifies only what to do with the file by providing the {@link
|
||||
* FileWriterAction} implementation.
|
||||
*/
|
||||
public class App {
|
||||
|
||||
/**
|
||||
* Program entry point
|
||||
* Program entry point.
|
||||
*/
|
||||
public static void main(String[] args) throws IOException {
|
||||
|
||||
|
@ -27,9 +27,7 @@ import java.io.FileWriter;
|
||||
import java.io.IOException;
|
||||
|
||||
/**
|
||||
*
|
||||
* Interface for specifying what to do with the file resource.
|
||||
*
|
||||
*/
|
||||
@FunctionalInterface
|
||||
public interface FileWriterAction {
|
||||
|
@ -27,15 +27,13 @@ import java.io.FileWriter;
|
||||
import java.io.IOException;
|
||||
|
||||
/**
|
||||
*
|
||||
* SimpleFileWriter handles opening and closing file for the user. The user only has to specify what
|
||||
* to do with the file resource through {@link FileWriterAction} parameter.
|
||||
*
|
||||
*/
|
||||
public class SimpleFileWriter {
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
* Constructor.
|
||||
*/
|
||||
public SimpleFileWriter(String filename, FileWriterAction action) throws IOException {
|
||||
try (FileWriter writer = new FileWriter(filename)) {
|
||||
|
@ -24,21 +24,21 @@
|
||||
import abstractextensions.CommanderExtension;
|
||||
import abstractextensions.SergeantExtension;
|
||||
import abstractextensions.SoldierExtension;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import units.CommanderUnit;
|
||||
import units.SergeantUnit;
|
||||
import units.SoldierUnit;
|
||||
import units.Unit;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
/**
|
||||
* Anticipate that an object’s interface needs to be extended in the future.
|
||||
* Additional interfaces are defined by extension objects.
|
||||
* Anticipate that an object’s interface needs to be extended in the future. Additional interfaces
|
||||
* are defined by extension objects.
|
||||
*/
|
||||
public class App {
|
||||
|
||||
/**
|
||||
* Program entry point
|
||||
* Program entry point.
|
||||
*
|
||||
* @param args command line args
|
||||
*/
|
||||
@ -59,9 +59,12 @@ public class App {
|
||||
private static void checkExtensionsForUnit(Unit unit) {
|
||||
final Logger logger = LoggerFactory.getLogger(App.class);
|
||||
|
||||
SoldierExtension soldierExtension = (SoldierExtension) unit.getUnitExtension("SoldierExtension");
|
||||
SergeantExtension sergeantExtension = (SergeantExtension) unit.getUnitExtension("SergeantExtension");
|
||||
CommanderExtension commanderExtension = (CommanderExtension) unit.getUnitExtension("CommanderExtension");
|
||||
SoldierExtension soldierExtension =
|
||||
(SoldierExtension) unit.getUnitExtension("SoldierExtension");
|
||||
SergeantExtension sergeantExtension =
|
||||
(SergeantExtension) unit.getUnitExtension("SergeantExtension");
|
||||
CommanderExtension commanderExtension =
|
||||
(CommanderExtension) unit.getUnitExtension("CommanderExtension");
|
||||
|
||||
//if unit have extension call the method
|
||||
if (soldierExtension != null) {
|
||||
|
@ -24,7 +24,7 @@
|
||||
package abstractextensions;
|
||||
|
||||
/**
|
||||
* Interface with their method
|
||||
* Interface with their method.
|
||||
*/
|
||||
public interface CommanderExtension extends UnitExtension {
|
||||
|
||||
|
@ -24,7 +24,7 @@
|
||||
package abstractextensions;
|
||||
|
||||
/**
|
||||
* Interface with their method
|
||||
* Interface with their method.
|
||||
*/
|
||||
public interface SergeantExtension extends UnitExtension {
|
||||
|
||||
|
@ -24,7 +24,7 @@
|
||||
package abstractextensions;
|
||||
|
||||
/**
|
||||
* Interface with their method
|
||||
* Interface with their method.
|
||||
*/
|
||||
public interface SoldierExtension extends UnitExtension {
|
||||
void soldierReady();
|
||||
|
@ -24,7 +24,7 @@
|
||||
package abstractextensions;
|
||||
|
||||
/**
|
||||
* Other Extensions will extend this interface
|
||||
* Other Extensions will extend this interface.
|
||||
*/
|
||||
public interface UnitExtension {
|
||||
}
|
||||
|
@ -29,7 +29,7 @@ import org.slf4j.LoggerFactory;
|
||||
import units.CommanderUnit;
|
||||
|
||||
/**
|
||||
* Class defining Commander
|
||||
* Class defining Commander.
|
||||
*/
|
||||
public class Commander implements CommanderExtension {
|
||||
|
||||
|
@ -29,7 +29,7 @@ import org.slf4j.LoggerFactory;
|
||||
import units.SergeantUnit;
|
||||
|
||||
/**
|
||||
* Class defining Sergeant
|
||||
* Class defining Sergeant.
|
||||
*/
|
||||
public class Sergeant implements SergeantExtension {
|
||||
|
||||
|
@ -29,7 +29,7 @@ import org.slf4j.LoggerFactory;
|
||||
import units.SoldierUnit;
|
||||
|
||||
/**
|
||||
* Class defining Soldier
|
||||
* Class defining Soldier.
|
||||
*/
|
||||
public class Soldier implements SoldierExtension {
|
||||
private static final Logger LOGGER = LoggerFactory.getLogger(Soldier.class);
|
||||
|
@ -27,7 +27,7 @@ import abstractextensions.UnitExtension;
|
||||
import concreteextensions.Commander;
|
||||
|
||||
/**
|
||||
* Class defining CommanderUnit
|
||||
* Class defining CommanderUnit.
|
||||
*/
|
||||
public class CommanderUnit extends Unit {
|
||||
|
||||
|
@ -27,7 +27,7 @@ import abstractextensions.UnitExtension;
|
||||
import concreteextensions.Sergeant;
|
||||
|
||||
/**
|
||||
* Class defining SergeantUnit
|
||||
* Class defining SergeantUnit.
|
||||
*/
|
||||
public class SergeantUnit extends Unit {
|
||||
|
||||
|
@ -27,7 +27,7 @@ import abstractextensions.UnitExtension;
|
||||
import concreteextensions.Soldier;
|
||||
|
||||
/**
|
||||
* Class defining SoldierUnit
|
||||
* Class defining SoldierUnit.
|
||||
*/
|
||||
public class SoldierUnit extends Unit {
|
||||
|
||||
|
@ -26,7 +26,7 @@ package units;
|
||||
import abstractextensions.UnitExtension;
|
||||
|
||||
/**
|
||||
* Class defining Unit, other units will extend this class
|
||||
* Class defining Unit, other units will extend this class.
|
||||
*/
|
||||
public class Unit {
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user