Bean properties

The bean properties allow you to customize the renderer.
In this example, you need to change only the flag layer value. The setter and getter methods are shown in the following code example.
Setter and getter methods for the bean property Flag Layer
    /////////////////////////
    // Bean properties


    /**
     * Sets flag layer. Default is 20.
     * */
    public void setFlagLayer(int v) {
        _flagLayer = v;
    }
    
    /* 
     * Returns flag layer.
     * @see setDebugMask
     */
    public int getFlagLayer() {
        return _flagLayer;
    }