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

com.github.beothorn.html.common.SimpleProp Maven / Gradle / Ivy

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

import com.github.beothorn.html.Renderable;

public class SimpleProp implements Renderable {

	private String name;
	private String value;

	public SimpleProp(
		final String name,
		final String value
	) {
		this.name = name;
		this.value = value;
	}
	
	@Override
	public String render() {
		return name+"=\"" + value + "\"";
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy