All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.protege.editor.owl.ui.renderer.styledstring.CSSConstants Maven / Gradle / Ivy

Go to download

OWL ontology editing infrastructure used by the Protege desktop application.

The newest version!
package org.protege.editor.owl.ui.renderer.styledstring;

/**
 * Author: Matthew Horridge
* Stanford University
* Bio-Medical Informatics Research Group
* Date: 25/09/2012 */ public enum CSSConstants { TEXT_DECORATION("text-decoration"), FONT_WEIGHT("font-weight"), FONT_SIZE("font-size"), BACKGROUND("background"), COLOR("color"), BOLD("bold"), NORMAL("normal"), LINE_THROUGH("line-through"), UNDERLINE("underline"), NONE("none"); String name; private CSSConstants(String name) { this.name = name; } public String getName() { return name; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy