org.tentackle.fx.container.delegate.FxTitledPaneDelegate Maven / Gradle / Ivy
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package org.tentackle.fx.container.delegate;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.scene.Node;
import org.tentackle.fx.FxContainerDelegate;
import org.tentackle.fx.container.FxTitledPane;
/**
* Delegate for FxTitledPane.
*
* @author harald
*/
public class FxTitledPaneDelegate extends FxContainerDelegate {
private final FxTitledPane container; // the container
/**
* Creates the delegate.
*
* @param container the container
*/
public FxTitledPaneDelegate(FxTitledPane container) {
this.container = container;
}
@Override
public FxTitledPane getContainer() {
return container;
}
@Override
public ObservableList getComponents() {
return FXCollections.observableArrayList(container.getContent());
}
}