blob: efb8dd7a520d016114bb53ba4d9ccd7db4df81fa [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2005 Sybase, Inc. 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:
* Sybase, Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.jsf.facesconfig.ui.page.detail;
import org.eclipse.jst.jsf.facesconfig.ui.page.FacesConfigMasterDetailPage;
import org.eclipse.jst.jsf.facesconfig.ui.section.IFacesConfigSection;
import org.eclipse.jst.jsf.facesconfig.ui.section.RendererSection;
import org.eclipse.jst.jsf.facesconfig.ui.section.RenderkitGeneralSection;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.ui.forms.IManagedForm;
import org.eclipse.ui.forms.widgets.FormToolkit;
/**
* @author Bryan Yang
*
*/
public class RenderkitDetailsPage extends FacesConfigDetailsPage {
/**
*
* @param page
*/
public RenderkitDetailsPage(FacesConfigMasterDetailPage page) {
super(page);
}
/**
* create the detail sections and set layout for them.
*/
protected IFacesConfigSection[] createDetailSections(Composite composite,
IManagedForm managedForm, FormToolkit toolkit, FacesConfigMasterDetailPage page) {
RenderkitGeneralSection generalSection = new RenderkitGeneralSection(
composite, managedForm, getPage(), toolkit);
GridData gd = new GridData(GridData.FILL_HORIZONTAL);
generalSection.getSection().setLayoutData(gd);
RendererSection rendererSection = new RendererSection(composite,
managedForm, getPage(), toolkit);
gd = new GridData(GridData.FILL_BOTH | GridData.VERTICAL_ALIGN_FILL);
rendererSection.getSection().setLayoutData(gd);
return new IFacesConfigSection[] { generalSection,rendererSection };
}
}