Package algorithms.factories

Source Code of algorithms.factories.WaveFactory

package algorithms.factories;

import algorithms.core.Algorithm;
import algorithms.impls.wave.WaveAlgorithm;
import painting.ColorSquare;

import java.util.List;

class WaveFactory implements AlgorithmFactory {

    public Algorithm getAlgorithm(List<List<ColorSquare>> colorSquareArr) {
        return new WaveAlgorithm(colorSquareArr);
    }
}
TOP

Related Classes of algorithms.factories.WaveFactory

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.