com.swingfrog.summer.web.view.BlankView Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of summer Show documentation
Show all versions of summer Show documentation
a lightweight game server framework
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