![JAR search and dependency download from the Maven repository](/logo.png)
org.wicketstuff.jwicket.JsScript Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wicketstuff-jwicket-core Show documentation
Show all versions of wicketstuff-jwicket-core Show documentation
WicketJQuery by Stefan Lindner has been renamed to jWicket, mavenized, and migrated
to WicketStuff. This Wicketstuff version supercedes the original version which was available
at http://subversion.visionet.de/project/WicketJQuery/wiki
package org.wicketstuff.jwicket;
import java.io.Serializable;
public class JsScript implements Serializable {
private static final long serialVersionUID = 1L;
private final String script;
public JsScript(final String script) {
this.script = script;
}
public String toString() {
return script;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy