blob: 48afbd68a468ec565bb15eeccf57839be518d6ad [file] [log] [blame]
package org.eclipse.ui.internal;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import java.util.*;
import org.eclipse.swt.*;
import org.eclipse.swt.widgets.*;
/**
* A PlaceHolder is a non-visible stand-in for a IVisualPart.
*/
public class PartPlaceholder extends LayoutPart {
public PartPlaceholder(String id) {
super(id);
}
/**
* Creates the SWT control
*/
public void createControl(Composite parent) {
}
/**
* Get the part control. This method may return null.
*/
public Control getControl() {
return null;
}
/**
* Returns true if this part is visible.
*/
public boolean isVisible() {
return false;
}
}