com.google.code.gwt.crop.client.ICropperStyleSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwt-crop Show documentation
Show all versions of gwt-crop Show documentation
GWT plugin for image cropping
package com.google.code.gwt.crop.client;
/**
* Interface is used to give changing styles for different device types.
* It can be modified through deferring binding
*
* @author [email protected] (Ilja Hämäläinen)
*
*/
interface ICropperStyleSource {
/**
* Initiates proper implementation of the current style bundle.
* Add the
* @Source("yourStyleFileName.css")
* annotation to this method to provide your CSS style
* file path.
*
* @return GWTCropperStyle instance of the bundle style
*/
CropperStyleResource css();
}