Search in sources :

Example 1 with PropProxy

use of limelight.model.api.PropProxy in project limelight by slagyr.

the class Debug method log.

public void log(Panel panel, String message) {
    if (panel instanceof PropPanel) {
        PropPanel prop = (PropPanel) panel;
        PropProxy propProxy = prop.getProxy();
        if (propProxy != null && "sandbox".equals(prop.getName()))
            System.err.println(message);
    }
}
Also used : PropPanel(limelight.ui.model.PropPanel) PropProxy(limelight.model.api.PropProxy)

Aggregations

PropProxy (limelight.model.api.PropProxy)1 PropPanel (limelight.ui.model.PropPanel)1