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

net.sourceforge.plantuml.math.PSystemMathFactory Maven / Gradle / Ivy

There is a newer version: 1.2024.8
Show newest version
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml.math;

import net.sourceforge.plantuml.command.PSystemBasicFactory;
import net.sourceforge.plantuml.core.DiagramType;
import net.sourceforge.plantuml.core.UmlSource;

public class PSystemMathFactory extends PSystemBasicFactory {

	public PSystemMathFactory(DiagramType type) {
		super(type);
	}

	@Override
	public PSystemMath initDiagram(UmlSource source, String startLine) {
		if (getDiagramType() == DiagramType.MATH)
			return new PSystemMath(source);

		return null;
	}

	@Override
	public PSystemMath executeLine(UmlSource source, PSystemMath system, String line) {
		system.doCommandLine(line);
		return system;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy