Skip to content

Commit fe63c9c

Browse files
committed
Merge pull request iluwatar#281 from ankurkaushal/master
Reformat according to google style guide
2 parents 7e4f046 + 306b1f3 commit fe63c9c

File tree

438 files changed

+8566
-8691
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

438 files changed

+8566
-8691
lines changed

abstract-factory/src/main/java/com/iluwatar/abstractfactory/App.java

+68-70
Original file line numberDiff line numberDiff line change
@@ -3,80 +3,78 @@
33

44
/**
55
*
6-
* The Abstract Factory pattern provides a way to encapsulate a group of individual
7-
* factories that have a common theme without specifying their concrete classes. In
8-
* normal usage, the client software creates a concrete implementation of the abstract
9-
* factory and then uses the generic interface of the factory to create the concrete
10-
* objects that are part of the theme. The client does not know (or care) which
11-
* concrete objects it gets from each of these internal factories, since it uses only
12-
* the generic interfaces of their products. This pattern separates the details of
13-
* implementation of a set of objects from their general usage and relies on object
14-
* composition, as object creation is implemented in methods exposed in the factory
15-
* interface.
6+
* The Abstract Factory pattern provides a way to encapsulate a group of individual factories that
7+
* have a common theme without specifying their concrete classes. In normal usage, the client
8+
* software creates a concrete implementation of the abstract factory and then uses the generic
9+
* interface of the factory to create the concrete objects that are part of the theme. The client
10+
* does not know (or care) which concrete objects it gets from each of these internal factories,
11+
* since it uses only the generic interfaces of their products. This pattern separates the details
12+
* of implementation of a set of objects from their general usage and relies on object composition,
13+
* as object creation is implemented in methods exposed in the factory interface.
1614
* <p>
17-
* The essence of the Abstract Factory pattern is a factory interface
18-
* ({@link KingdomFactory}) and its implementations ({@link ElfKingdomFactory},
19-
* {@link OrcKingdomFactory}). The example uses both concrete implementations to
20-
* create a king, a castle and an army.
15+
* The essence of the Abstract Factory pattern is a factory interface ({@link KingdomFactory}) and
16+
* its implementations ({@link ElfKingdomFactory}, {@link OrcKingdomFactory}). The example uses both
17+
* concrete implementations to create a king, a castle and an army.
2118
*
2219
*/
2320
public class App {
2421

25-
private King king;
26-
private Castle castle;
27-
private Army army;
22+
private King king;
23+
private Castle castle;
24+
private Army army;
2825

29-
/**
30-
* Creates kingdom
31-
* @param factory
32-
*/
33-
public void createKingdom(final KingdomFactory factory) {
34-
setKing(factory.createKing());
35-
setCastle(factory.createCastle());
36-
setArmy(factory.createArmy());
37-
}
38-
39-
ElfKingdomFactory getElfKingdomFactory() {
40-
return new ElfKingdomFactory();
41-
}
42-
43-
OrcKingdomFactory getOrcKingdomFactory() {
44-
return new OrcKingdomFactory();
45-
}
46-
47-
King getKing(final KingdomFactory factory) {
48-
return factory.createKing();
49-
}
50-
51-
Castle getCastle(final KingdomFactory factory) {
52-
return factory.createCastle();
53-
}
54-
55-
Army getArmy(final KingdomFactory factory) {
56-
return factory.createArmy();
57-
}
58-
59-
public King getKing() {
60-
return king;
61-
}
62-
63-
private void setKing(final King king) {
64-
this.king = king;
65-
}
66-
67-
public Castle getCastle() {
68-
return castle;
69-
}
70-
71-
private void setCastle(final Castle castle) {
72-
this.castle = castle;
73-
}
74-
75-
public Army getArmy() {
76-
return army;
77-
}
78-
79-
private void setArmy(final Army army) {
80-
this.army = army;
81-
}
26+
/**
27+
* Creates kingdom
28+
*
29+
* @param factory
30+
*/
31+
public void createKingdom(final KingdomFactory factory) {
32+
setKing(factory.createKing());
33+
setCastle(factory.createCastle());
34+
setArmy(factory.createArmy());
35+
}
36+
37+
ElfKingdomFactory getElfKingdomFactory() {
38+
return new ElfKingdomFactory();
39+
}
40+
41+
OrcKingdomFactory getOrcKingdomFactory() {
42+
return new OrcKingdomFactory();
43+
}
44+
45+
King getKing(final KingdomFactory factory) {
46+
return factory.createKing();
47+
}
48+
49+
Castle getCastle(final KingdomFactory factory) {
50+
return factory.createCastle();
51+
}
52+
53+
Army getArmy(final KingdomFactory factory) {
54+
return factory.createArmy();
55+
}
56+
57+
public King getKing() {
58+
return king;
59+
}
60+
61+
private void setKing(final King king) {
62+
this.king = king;
63+
}
64+
65+
public Castle getCastle() {
66+
return castle;
67+
}
68+
69+
private void setCastle(final Castle castle) {
70+
this.castle = castle;
71+
}
72+
73+
public Army getArmy() {
74+
return army;
75+
}
76+
77+
private void setArmy(final Army army) {
78+
this.army = army;
79+
}
8280
}

abstract-factory/src/main/java/com/iluwatar/abstractfactory/Army.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
*/
88
public interface Army {
99

10-
String getDescription();
10+
String getDescription();
1111
}

abstract-factory/src/main/java/com/iluwatar/abstractfactory/Castle.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
*/
88
public interface Castle {
99

10-
String getDescription();
10+
String getDescription();
1111
}

abstract-factory/src/main/java/com/iluwatar/abstractfactory/ElfArmy.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
*/
88
public class ElfArmy implements Army {
99

10-
static final String DESCRIPTION = "This is the Elven Army!";
10+
static final String DESCRIPTION = "This is the Elven Army!";
1111

12-
@Override
13-
public String getDescription() {
14-
return DESCRIPTION;
15-
}
12+
@Override
13+
public String getDescription() {
14+
return DESCRIPTION;
15+
}
1616
}

abstract-factory/src/main/java/com/iluwatar/abstractfactory/ElfCastle.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
*/
88
public class ElfCastle implements Castle {
99

10-
static final String DESCRIPTION = "This is the Elven castle!";
10+
static final String DESCRIPTION = "This is the Elven castle!";
1111

12-
@Override
13-
public String getDescription() {
14-
return DESCRIPTION;
15-
}
12+
@Override
13+
public String getDescription() {
14+
return DESCRIPTION;
15+
}
1616
}

abstract-factory/src/main/java/com/iluwatar/abstractfactory/ElfKing.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
*/
88
public class ElfKing implements King {
99

10-
static final String DESCRIPTION = "This is the Elven king!";
11-
12-
@Override
13-
public String getDescription() {
14-
return DESCRIPTION;
15-
}
10+
static final String DESCRIPTION = "This is the Elven king!";
11+
12+
@Override
13+
public String getDescription() {
14+
return DESCRIPTION;
15+
}
1616
}

abstract-factory/src/main/java/com/iluwatar/abstractfactory/ElfKingdomFactory.java

+9-9
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@
77
*/
88
public class ElfKingdomFactory implements KingdomFactory {
99

10-
public Castle createCastle() {
11-
return new ElfCastle();
12-
}
10+
public Castle createCastle() {
11+
return new ElfCastle();
12+
}
1313

14-
public King createKing() {
15-
return new ElfKing();
16-
}
14+
public King createKing() {
15+
return new ElfKing();
16+
}
1717

18-
public Army createArmy() {
19-
return new ElfArmy();
20-
}
18+
public Army createArmy() {
19+
return new ElfArmy();
20+
}
2121

2222
}

abstract-factory/src/main/java/com/iluwatar/abstractfactory/King.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
*/
88
public interface King {
99

10-
String getDescription();
10+
String getDescription();
1111
}

abstract-factory/src/main/java/com/iluwatar/abstractfactory/KingdomFactory.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
*/
88
public interface KingdomFactory {
99

10-
Castle createCastle();
10+
Castle createCastle();
1111

12-
King createKing();
12+
King createKing();
1313

14-
Army createArmy();
14+
Army createArmy();
1515

1616
}

abstract-factory/src/main/java/com/iluwatar/abstractfactory/OrcArmy.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
*/
88
public class OrcArmy implements Army {
99

10-
static final String DESCRIPTION = "This is the Orc Army!";
10+
static final String DESCRIPTION = "This is the Orc Army!";
1111

12-
@Override
13-
public String getDescription() {
14-
return DESCRIPTION;
15-
}
12+
@Override
13+
public String getDescription() {
14+
return DESCRIPTION;
15+
}
1616
}

abstract-factory/src/main/java/com/iluwatar/abstractfactory/OrcCastle.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
*/
88
public class OrcCastle implements Castle {
99

10-
static final String DESCRIPTION = "This is the Orc castle!";
10+
static final String DESCRIPTION = "This is the Orc castle!";
1111

12-
@Override
13-
public String getDescription() {
14-
return DESCRIPTION;
15-
}
12+
@Override
13+
public String getDescription() {
14+
return DESCRIPTION;
15+
}
1616
}

abstract-factory/src/main/java/com/iluwatar/abstractfactory/OrcKing.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
*/
88
public class OrcKing implements King {
99

10-
static final String DESCRIPTION = "This is the Orc king!";
11-
12-
@Override
13-
public String getDescription() {
14-
return DESCRIPTION;
15-
}
10+
static final String DESCRIPTION = "This is the Orc king!";
11+
12+
@Override
13+
public String getDescription() {
14+
return DESCRIPTION;
15+
}
1616
}

abstract-factory/src/main/java/com/iluwatar/abstractfactory/OrcKingdomFactory.java

+9-10
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,15 @@
77
*/
88
public class OrcKingdomFactory implements KingdomFactory {
99

10-
public Castle createCastle() {
11-
return new OrcCastle();
12-
}
10+
public Castle createCastle() {
11+
return new OrcCastle();
12+
}
1313

14-
public King createKing() {
15-
return new OrcKing();
16-
}
17-
18-
public Army createArmy() {
19-
return new OrcArmy();
20-
}
14+
public King createKing() {
15+
return new OrcKing();
16+
}
2117

18+
public Army createArmy() {
19+
return new OrcArmy();
20+
}
2221
}

0 commit comments

Comments
 (0)