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

org.wicketstuff.jwicket.ui.effect.EffectMode Maven / Gradle / Ivy

Go to download

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

The newest version!
package org.wicketstuff.jwicket.ui.effect;


public enum EffectMode {

	DEFAULT(null),
	SHOW("show"),
	HIDE("hide");

	private final String mode;

	private EffectMode(final String mode) {
		this.mode = mode;
	}

	public String getMode() {
		return mode;
	}

	public String toString() {
		return mode==null?"default":mode;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy