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

com.craigburke.document.core.BackgroundAssignable.groovy Maven / Gradle / Ivy

package com.craigburke.document.core

trait BackgroundAssignable {
    Color background
    
    void setBackground(String value) {
        if (value) {
            background = background ?: new Color()
            background.color = value
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy