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

net.sourceforge.plantuml.eggs.PSystemEgg 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.eggs;

import java.util.StringTokenizer;

import net.sourceforge.plantuml.PlainStringsDiagram;
import net.sourceforge.plantuml.core.DiagramDescription;
import net.sourceforge.plantuml.core.UmlSource;

public class PSystemEgg extends PlainStringsDiagram {
	// ::remove file when __CORE__

	PSystemEgg(UmlSource source, String sentence) {
		super(source);
		final StringTokenizer st = new StringTokenizer(sentence, "|");
		while (st.hasMoreTokens()) {
			strings.add(st.nextToken());
		}
	}

	public DiagramDescription getDescription() {
		return new DiagramDescription("(Easter Eggs)");
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy