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

com.swingfrog.summer.web.view.BlankView Maven / Gradle / Ivy

There is a newer version: 1.1.18
Show newest version
package com.swingfrog.summer.web.view;

public class BlankView extends TextView {

	public static BlankView of() {
		return new BlankView();
	}

	public BlankView() {
		super("");
	}
	
	@Override
	public String toString() {
		return "BlankView";
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy