org.wicketstuff.jwicket.ui.effect.Clip Maven / Gradle / Ivy
package org.wicketstuff.jwicket.ui.effect;
import org.wicketstuff.jwicket.JQueryJavascriptResourceReference;
public class Clip extends AbstractJqueryUiEffect {
private static final long serialVersionUID = 1L;
public Clip() {
super(new JQueryJavascriptResourceReference(Clip.class, "jquery.effects.clip.min.js"));
}
@Override
String getEffectName() {
return "clip";
}
private String mode = null;
/** Set the clip mode
*
* @param value the mode
* @return this object
*/
public Clip setMode(final EffectMode value) {
if (value == null)
mode = null;
else
mode = value.getMode();
return this;
}
private String direction = null;
/** Set the clip direction
*
* @param value the direction
* @return this object
*/
public Clip setDirection(final EffectHorVerDirection value) {
if (value == null)
direction = null;
else
direction = value.getDirection();
return this;
}
@Override
void appendOptions(final StringBuilder jsString) {
if (mode != null || direction != null) {
boolean firstOption = true;
jsString.append(",{");
if (mode != null) {
jsString.append("mode:'");
jsString.append(mode);
jsString.append("'");
firstOption = false;
}
if (direction != null) {
if (!firstOption)
jsString.append(",");
jsString.append("direction:'");
jsString.append(direction);
jsString.append("'");
}
jsString.append("}");
}
}
}