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

org.stjs.javascript.jquery.impl.UIMousePlugin Maven / Gradle / Ivy

package org.stjs.javascript.jquery.impl;

import org.stjs.javascript.annotation.SyntheticType;
import org.stjs.javascript.jquery.Event;
import org.stjs.javascript.jquery.JQueryAndPlugins;

/**
 * This class is used when you want to develop your own widgets
 * 
 * @author acraciun
 * 
 */
@SyntheticType
abstract public class UIMousePlugin> extends UIWidget {
	protected FullJQuery helper;

	protected boolean _mouseCapture(Event ev) {
		throw new UnsupportedOperationException();
	}

	protected void _mouseInit() {
		throw new UnsupportedOperationException();
	}

	protected void _mouseDrag(Event ev) {
		throw new UnsupportedOperationException();
	}

	protected void _mouseStart(Event ev) {
		throw new UnsupportedOperationException();
	}

	protected void _mouseStop(Event ev) {
		throw new UnsupportedOperationException();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy