blob: df65f9e41c8c8beb61d67c5710556507ced5d666 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.update.internal.ui.model;
import java.util.ArrayList;
public class BookmarkFolder extends NamedModelObject {
private static final long serialVersionUID = 1L;
protected ArrayList children= new ArrayList();
public BookmarkFolder() {
}
public BookmarkFolder(String name) {
super(name);
}
public Object[] getChildren(Object parent) {
return children.toArray();
}
public boolean hasChildren() {
return children.size()>0;
}
public void addChild(NamedModelObject object) {
internalAdd(object);
notifyObjectsAdded(this, new Object[] {object});
}
public void addChildren(NamedModelObject [] objects) {
for (int i=0; i<objects.length; i++) {
internalAdd(objects[i]);
}
notifyObjectsAdded(this, objects);
}
protected void internalAdd(NamedModelObject child) {
children.add(child);
child.setModel(getModel());
child.setParent(this);
}
public void removeChildren(NamedModelObject [] objects) {
for (int i=0; i<objects.length; i++) {
children.remove(objects[i]);
objects[i].setParent(null);
}
notifyObjectsRemoved(this, objects);
}
}