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

com.massisframework.sweethome3d.plugins.components.ComponentDesignerAction Maven / Gradle / Ivy

There is a newer version: 0.0.7
Show newest version
package com.massisframework.sweethome3d.plugins.components;

import com.eteks.sweethome3d.plugin.PluginAction;
import com.eteks.sweethome3d.viewcontroller.HomeController;
import com.massisframework.sweethome3d.javafx.FXHome;
import com.massisframework.sweethome3d.plugins.HomeReadyListener;

public class ComponentDesignerAction extends PluginAction
		implements HomeReadyListener {

	private FXHome home;
	private HomeController homeController;

	public ComponentDesignerAction(ComponentPlugin plugin)
	{
		this.home = new FXHome(plugin.getHome());
		this.setEnabled(true);
		this.homeController = plugin.getHomeController();
	}

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

	@Override
	public void execute()
	{
		
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy