Created
December 15, 2015 23:40
-
-
Save romartin/486b61cc300cc5946c26 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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