blob: 53e90a03e9a882ccd54eed1c0d2b1a0c33ee3dca [file] [log] [blame]
package org.eclipse.team.internal.ui.target;
import org.eclipse.ui.model.WorkbenchContentProvider;
public class SiteLazyContentProvider extends WorkbenchContentProvider {
public boolean hasChildren(Object element) {
if (element == null) {
return false;
}
// the + box will always appear, but then disappear
// if not needed after you first click on it.
return true; // just always return true to avoid going to server
}
}