Skip to content

Instantly share code, notes, and snippets.

@romartin
Created December 15, 2015 23:40
Show Gist options
  • Save romartin/486b61cc300cc5946c26 to your computer and use it in GitHub Desktop.
Save romartin/486b61cc300cc5946c26 to your computer and use it in GitHub Desktop.
package org.uberfire.ext.wirez.bpmn.api.property;
import org.jboss.errai.common.client.api.annotations.Portable;
import org.uberfire.ext.wirez.core.api.impl.property.StringProperty;
@Portable
public class FontColorProperty extends StringProperty {
public static final FontColorProperty INSTANCE = new FontColorProperty();
public static String ID = "fontcolor";
public FontColorProperty() {
super("fontcolor", "Font Color",
"The font color",
false, true, "#000000");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment