Skip to content

Instantly share code, notes, and snippets.

View kthoms's full-sized avatar
👨‍💻
Working in spare time on Operaton

Karsten Thoms kthoms

👨‍💻
Working in spare time on Operaton
View GitHub Profile
@kthoms
kthoms / gist:1771065
Created February 8, 2012 17:02
Spray_Listing_Styles_BlackAndWhiteStyle_Java
IGaService gaService = Graphiti.getGaService();
// Creating Style with given id and description
Style style = super.getStyle(diagram);
style.setId("BlackAndWhiteStyle");
style.setDescription("A style with white background and black foreground.");
// transparency value
style.setTransparency(0.95);
@kthoms
kthoms / gist:1771043
Created February 8, 2012 16:57
Spray_Listing_Styles_BlackAndWhiteStyle_DSL
style BlackAndWhiteStyle {
description = "A style with white background and black foreground."
transparency = 0.95
background-color = black
line-color = black
line-style = solid
line-width = 1
font-color = black
font-name = "Tahoma"
font-size = 10