You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
accounting-dashboard/src/main/java/org/gcube/portlets/user/accountingdashboard/client/resources/ScopeTreeResources.java

22 lines
566 B
Java

package org.gcube.portlets.user.accountingdashboard.client.resources;
import com.google.gwt.user.cellview.client.CellTree.Resources;
import com.google.gwt.user.cellview.client.CellTree.Style;
public interface ScopeTreeResources extends Resources {
interface ScopeTreeStyle extends Style {
/**
* The path to the default CSS styles used by this resource.
*/
String DEFAULT_CSS = "uiScopeTree.css";
}
/**
* The styles used in this widget.
*/
@Source(ScopeTreeStyle.DEFAULT_CSS)
ScopeTreeStyle cellTreeStyle();
}