Just formatting App classes to be like the other class files on the project

This commit is contained in:
Matthew
2014-10-07 16:23:37 +01:00
parent 52f0923df9
commit bde5b343d0
24 changed files with 466 additions and 508 deletions

View File

@ -1,35 +1,34 @@
package com.iluwatar;
/**
*
* In Prototype we have a factory class (HeroFactoryImpl) producing
* objects by cloning existing ones. In this example the factory's
* prototype objects are given as constructor parameters.
*
* In Prototype we have a factory class (HeroFactoryImpl) producing objects by
* cloning existing ones. In this example the factory's prototype objects are
* given as constructor parameters.
*
*/
public class App
{
public static void main( String[] args )
{
HeroFactory factory;
Mage mage;
Warlord warlord;
Beast beast;
factory = new HeroFactoryImpl(new ElfMage(), new ElfWarlord(), new ElfBeast());
mage = factory.createMage();
warlord = factory.createWarlord();
beast = factory.createBeast();
System.out.println(mage);
System.out.println(warlord);
System.out.println(beast);
factory = new HeroFactoryImpl(new OrcMage(), new OrcWarlord(), new OrcBeast());
mage = factory.createMage();
warlord = factory.createWarlord();
beast = factory.createBeast();
System.out.println(mage);
System.out.println(warlord);
System.out.println(beast);
public class App {
public static void main(String[] args) {
HeroFactory factory;
Mage mage;
Warlord warlord;
Beast beast;
factory = new HeroFactoryImpl(new ElfMage(), new ElfWarlord(), new ElfBeast());
mage = factory.createMage();
warlord = factory.createWarlord();
beast = factory.createBeast();
System.out.println(mage);
System.out.println(warlord);
System.out.println(beast);
factory = new HeroFactoryImpl(new OrcMage(), new OrcWarlord(), new OrcBeast());
mage = factory.createMage();
warlord = factory.createWarlord();
beast = factory.createBeast();
System.out.println(mage);
System.out.println(warlord);
System.out.println(beast);
}
}