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

net.sourceforge.plantuml.command.CommandAffineTransformMultiline 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.command;

import net.sourceforge.plantuml.TitledDiagram;
import net.sourceforge.plantuml.utils.BlocLines;

public class CommandAffineTransformMultiline extends CommandMultilines {

	public static final CommandAffineTransformMultiline ME = new CommandAffineTransformMultiline();

	private CommandAffineTransformMultiline() {
		super("^!transformation[%s]+\\{[%s]*$");
	}

	@Override
	public String getPatternEnd() {
		return "^[%s]*!\\}[%s]*$";
	}

	public CommandExecutionResult execute(final TitledDiagram diagram, BlocLines lines) {
		// lines = lines.subExtract(1, 1);
		// diagram.setAnimation(lines);
		return CommandExecutionResult.error("Not yet implemented");
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy