package envoy.client.ui.settings; import javafx.scene.layout.Pane; /** * Project: envoy-client
* File: SettingsPane.java
* Created: 18.04.2020
* * @author Kai S. K. Engelbart * @since Envoy Client v0.1-beta */ public abstract class SettingsPane extends Pane { protected String title; protected SettingsPane(String title) { this.title = title; } /** * @return the title of this settings pane * @since Envoy Client v0.1-beta */ public String getTitle() { return title; } }