Sha256: f9d6ec31f44566f8da50b247f84ca4f69141757ad50341b0dcb949a124bbb42f
Contents?: true
Size: 1012 Bytes
Versions: 1
Compression:
Stored size: 1012 Bytes
Contents
/** * Sencha GXT 3.1.1 - Sencha for GWT * Copyright(c) 2007-2014, Sencha, Inc. * licensing@sencha.com * * http://www.sencha.com/products/gxt/license/ */ package com.dldinternet.aws.cfn.stacker.desktopapp.client.spreadsheet.images; import com.google.gwt.core.client.GWT; import com.google.gwt.resources.client.ClientBundle; import com.google.gwt.resources.client.ImageResource; public class Images { public interface ImageResources extends ClientBundle { ImageResource arrow_down(); ImageResource arrow_left(); ImageResource arrow_right(); ImageResource arrow_up(); ImageResource chart_bar(); ImageResource chart_line(); ImageResource chart_pie(); ImageResource table_column_delete(); ImageResource table_row_delete(); } private static ImageResources imageResources; public static ImageResources getImageResources() { if (imageResources == null) { imageResources = GWT.create(ImageResources.class); } return imageResources; } }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
aws-cfn-stacker-0.0.6 | ui/src/com/dldinternet/aws/cfn/stacker/desktopapp/client/spreadsheet/images/Images.java |