2014-08-09 20:38:00 +03:00
|
|
|
package com.iluwatar;
|
|
|
|
|
2014-08-31 00:15:47 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Concrete factory.
|
|
|
|
*
|
|
|
|
*/
|
2014-08-09 20:38:00 +03:00
|
|
|
public class OrcKingdomFactory implements KingdomFactory {
|
|
|
|
|
|
|
|
public Castle createCastle() {
|
|
|
|
return new OrcCastle();
|
|
|
|
}
|
|
|
|
|
|
|
|
public King createKing() {
|
|
|
|
return new OrcKing();
|
|
|
|
}
|
|
|
|
|
|
|
|
public Army createArmy() {
|
|
|
|
return new OrcArmy();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|