Create meaningful JavaDocs instead of author names

This commit is contained in:
SrdjanPaunovic
2017-06-04 21:09:17 +02:00
parent 85acb1cf6c
commit 863589ed29
12 changed files with 13 additions and 12 deletions

View File

@ -9,7 +9,8 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Created by Srdjan on 26-Apr-17.
* Anticipate that an objects interface needs to be extended in the future.
* Additional interfaces are defined by extension objects.
*/
public class App {

View File

@ -1,7 +1,7 @@
package abstractextensions;
/**
* Created by Srdjan on 27-Apr-17.
* Interface with their method
*/
public interface CommanderExtension extends UnitExtension {

View File

@ -1,7 +1,7 @@
package abstractextensions;
/**
* Created by Srdjan on 27-Apr-17.
* Interface with their method
*/
public interface SergeantExtension extends UnitExtension {

View File

@ -1,7 +1,7 @@
package abstractextensions;
/**
* Created by Srdjan on 26-Apr-17.
* Interface with their method
*/
public interface SoldierExtension extends UnitExtension {
void soldierReady();

View File

@ -1,7 +1,7 @@
package abstractextensions;
/**
* Created by Srdjan on 26-Apr-17.
* Other Extensions will extend this interface
*/
public interface UnitExtension {
}

View File

@ -6,7 +6,7 @@ import org.slf4j.LoggerFactory;
import units.CommanderUnit;
/**
* Created by Srdjan on 27-Apr-17.
* Class defining Commander
*/
public class Commander implements CommanderExtension {

View File

@ -6,7 +6,7 @@ import org.slf4j.LoggerFactory;
import units.SergeantUnit;
/**
* Created by Srdjan on 27-Apr-17.
* Class defining Sergeant
*/
public class Sergeant implements SergeantExtension {

View File

@ -6,7 +6,7 @@ import org.slf4j.LoggerFactory;
import units.SoldierUnit;
/**
* Created by Srdjan on 26-Apr-17.
* Class defining Soldier
*/
public class Soldier implements SoldierExtension {

View File

@ -4,7 +4,7 @@ import abstractextensions.UnitExtension;
import concreteextensions.Commander;
/**
* Created by Srdjan on 27-Apr-17.
* Class defining CommanderUnit
*/
public class CommanderUnit extends Unit {

View File

@ -4,7 +4,7 @@ import abstractextensions.UnitExtension;
import concreteextensions.Sergeant;
/**
* Created by Srdjan on 27-Apr-17.
* Class defining SergeantUnit
*/
public class SergeantUnit extends Unit {

View File

@ -4,7 +4,7 @@ import abstractextensions.UnitExtension;
import concreteextensions.Soldier;
/**
* Created by Srdjan on 26-Apr-17.
* Class defining SoldierUnit
*/
public class SoldierUnit extends Unit {

View File

@ -3,7 +3,7 @@ package units;
import abstractextensions.UnitExtension;
/**
* Created by Srdjan on 26-Apr-17.
* Class defining Unit, other units will extend this class
*/
public class Unit {