All Downloads are FREE. Search and download functionalities are using the official Maven repository.

spoon.examples.factory.src.impl2.FactoryImpl2 Maven / Gradle / Ivy

The newest version!
package spoon.examples.factory.src.impl2;

import spoon.examples.factory.src.A;
import spoon.examples.factory.src.B;
import spoon.examples.factory.src.Factory;

public class FactoryImpl2 implements Factory {

	public A createA() {
		return new AImpl2();
	}

	public B createB() {
		return new BImpl2();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy