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

com.github.beothorn.html.elements.Text Maven / Gradle / Ivy

There is a newer version: 0.0.7
Show newest version
package com.github.beothorn.html.elements;

import com.github.beothorn.html.Renderable;

public class Text implements Renderable {

	private final String content;

	public Text(String content) {
		this.content = content;
	}
	
	public String render() {
		return content;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy