Question

When using the Swing graphical editor in NetBeans is it possible for a custom component to detect that it's design time? E.g.

public CustomComponent() {
    initComponents();

    if (!isDesignTime()) {
        someIcon = IconFactory.loadIcon("icons/SomeIcon.png");
    }
}

Basically I'm after something like .net's Component.DesignMode

Was it helpful?

Solution

Try:

java.beans.Beans.isDesignTime()
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top