public FilesystemComponent(ComponentContainer container, boolean remote)
{
super(container);
if(remote)
filesystemTreeGrid = new RemoteFilesystemTreeGrid(this,null);
else
filesystemTreeGrid = new LocalFilesystemTreeGrid(this);
this.setWidget(filesystemTreeGrid);
}