mirror of
https://github.com/atlanticbiomedical/portal.git
synced 2025-07-01 18:17:26 -04:00
Initial Commit
This commit is contained in:
17
src/com/biomed/client/resources/CellTableResource.java
Normal file
17
src/com/biomed/client/resources/CellTableResource.java
Normal file
@ -0,0 +1,17 @@
|
||||
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();
|
||||
}
|
Reference in New Issue
Block a user