Files
portal/src/com/biomed/client/resources/CellTableResource.java
Dobie Wollert 07762668f2 Initial Commit
2012-11-12 00:44:22 -08:00

17 lines
503 B
Java

package com.biomed.client.resources;
import com.google.gwt.core.client.GWT;
import com.google.gwt.user.cellview.client.CellTable;
import com.google.gwt.user.cellview.client.CellTable.Resources;
public interface CellTableResource extends Resources {
public CellTable.Resources INSTANCE =
GWT.create(CellTableResource.class);
/**
* The styles used in this widget.
*/
@Source("CellTableResource.css")
CellTable.Style cellTableStyle();
}