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

net.sourceforge.plantuml.oregon.PSystemOregonFactory Maven / Gradle / Ivy

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

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

public class PSystemOregonFactory extends PSystemBasicFactory {

	@Override
	public PSystemOregon initDiagram(UmlSource source, String startLine) {
		return null;
	}

	@Override
	public PSystemOregon executeLine(UmlSource source, PSystemOregon system, String line) {
		if (system == null && line.equalsIgnoreCase("run oregon trail"))
			return new PSystemOregon(source);

		if (system == null)
			return null;

		system.add(line);
		return system;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy