JavaFX
Revision as of 17:28, 27 June 2017 by Wf (talk | contribs) (Created page with "<source lang='java'> →* * update the given tab with the given panel * * @param tab * @param panel: public void updateTab(Tab tab, JPanel panel) { if (...")
/**
* update the given tab with the given panel
*
* @param tab
* @param panel
*/
public void updateTab(Tab tab, JPanel panel) {
if (panel != null) {
final SwingNode swingNode = new SwingNode();
swingNode.setContent(panel);
tab.setContent(swingNode);
}
}