All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.puresoltechnologies.javafx.showroom.parts.StepInterfaceExamplePart Maven / Gradle / Ivy

There is a newer version: 0.13.0
Show newest version
package com.puresoltechnologies.javafx.showroom.parts;

import java.util.Optional;

import com.puresoltechnologies.javafx.perspectives.PartHeaderToolBar;
import com.puresoltechnologies.javafx.perspectives.parts.AbstractViewer;
import com.puresoltechnologies.javafx.perspectives.parts.PartOpenMode;

import javafx.scene.Node;
import javafx.scene.layout.BorderPane;

public class StepInterfaceExamplePart extends AbstractViewer {

    public StepInterfaceExamplePart() {
	super("Step Interface Example", PartOpenMode.AUTO_AND_MANUAL);
    }

    @Override
    public Optional getToolBar() {
	return Optional.empty();
    }

    @Override
    public void close() {
	// Intentionally left blank
    }

    @Override
    public void initialize() {
	// TODO Auto-generated method stub
    }

    @Override
    public Node getContent() {
	return new BorderPane();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy