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

spoon.examples.factory.src.impl1.FactoryImpl1 Maven / Gradle / Ivy

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

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

public class FactoryImpl1 implements Factory {

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy