com.github.andy2003.ui.projects.ProjectChildFactory Maven / Gradle / Ivy
/**
* This file is part of Kayak.
*
* Kayak is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Kayak is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Kayak. If not, see .
*
*/
package com.github.andy2003.ui.projects;
import com.github.andy2003.core.Bus;
import java.util.List;
import org.openide.nodes.ChildFactory;
import org.openide.nodes.Node;
/**
*
* @author Jan-Niklas Meier
*/
public class ProjectChildFactory extends ChildFactory {
private Project project;
private ProjectChangeListener listener = new ProjectChangeListener() {
@Override
public void projectNameChanged(Project p, String name) {
}
@Override
public void projectClosed(Project p) {
}
@Override
public void projectOpened(Project p) {
}
@Override
public void projectBusAdded(Project p, Bus bus) {
refresh(true);
}
@Override
public void projectBusRemoved(Project p, Bus bus) {
refresh(true);
}
};
public ProjectChildFactory(Project project) {
this.project = project;
project.addProjectChangeListener(listener);
}
@Override
protected boolean createKeys(List toPopulate) {
toPopulate.addAll(project.getBusses());
return true;
}
@Override
protected Node[] createNodesForKey(Bus key) {
BusNode busNode = new BusNode(key, project);
return new Node[] {busNode};
}
}