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

com.google.code.gwt.crop.client.StylesTabletImpl Maven / Gradle / Ivy

There is a newer version: 0.5.5
Show newest version
package com.google.code.gwt.crop.client;

import com.google.gwt.core.client.GWT;
import com.google.gwt.resources.client.ClientBundle;

/**
 * Implementation of the style bundle initializer for tablets
 * 
 * @author [email protected] (Ilja Hämäläinen)
 *
 */
class StylesTabletImpl implements ICropperStyleSource {

	private final IStyleTablet bundleResources = GWT.create(IStyleTablet.class);

	interface IStyleTablet extends ClientBundle {
		
		@Source("GWTCropperTablet.css")
		CropperStyleResource getStyles();
	}

	
	/**
	 * {@inheritDoc}
	 */
	public CropperStyleResource css() {
		return bundleResources.getStyles();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy