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

net.sourceforge.plantuml.oregon.Screen 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.oregon;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

public class Screen {
	private final List lines = new ArrayList<>();

	public void clear() {
		lines.clear();
	}

	public void print(String s) {
		lines.add(s);
	}

	public void print() {
		lines.add(" ");
	}

	public List getLines() {
		return Collections.unmodifiableList(lines);
	}

	public String getLastLine() {
		return lines.get(lines.size() - 1);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy