{
// The LayoutMap is empty, so we create a new LinkedHashMap
m_aLayoutMap = new LinkedHashMap();
// TODO: We must know the name of a layouts, There should be a way to say where to find, not the names.
IReportBuilderLayouter aLayout = getLayoutInstanceFrom("com.sun.star.wizards.reportbuilder.layout.Tabular");
insertIntoLayoutMap(aLayout, true);
aLayout = getLayoutInstanceFrom("com.sun.star.wizards.reportbuilder.layout.ColumnarSingleColumn");
insertIntoLayoutMap(aLayout);
aLayout = getLayoutInstanceFrom("com.sun.star.wizards.reportbuilder.layout.ColumnarTwoColumns");
insertIntoLayoutMap(aLayout);