*
* @return a new fresh file
*/
public static StyleSheetItemBase create(final StyleSheetParams styleSheetParams) {
final StyleSheetItemBase styleSheetItem = new StyleSheetItemBase(styleSheetParams);
// Ensure that the uid will be unique at runtime
styleSheetItem.setUid(styleSheetIdGenerator.incrementAndGet());
return styleSheetItem;
}