/******************************************************************************* * Copyright (c) 2007 Exadel, Inc. and Red Hat, Inc. * Distributed under license by Red Hat, Inc. All rights reserved. * This program is 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: * Exadel, Inc. and Red Hat, Inc. - initial API and implementation ******************************************************************************/ package org.jboss.tools.common.model.ui.forms; import java.lang.reflect.InvocationTargetException; import org.jboss.tools.common.model.XModelObject; import org.jboss.tools.common.model.ui.ModelUIPlugin; import org.jboss.tools.common.model.util.ModelFeatureFactory; /** * @author Igels */ public class LayouredFormFactory extends XModelObjectFormFactory { private IFormLayoutData formLayoutData; public LayouredFormFactory(XModelObject xmo) { super(xmo); initialize(); } // FIXME: Get rid of reflection private void initialize() { // String entityName = getXModelObject().getModelEntity().getName(); String formLayoutDataClassName = null; formLayoutDataClassName = getXModelObject().getModelEntity().getProperty("formLayout"); //$NON-NLS-1$ Class formLayoutDataClass = ModelFeatureFactory.getInstance().getFeatureClass(formLayoutDataClassName); try { formLayoutData = (IFormLayoutData)formLayoutDataClass.getMethod("getInstance", (Class[])null).invoke(null, (Object[])null); //$NON-NLS-1$ } catch (IllegalAccessException e) { ModelUIPlugin.getPluginLog().logError(e); } catch (InvocationTargetException e) { ModelUIPlugin.getPluginLog().logError(e); } catch (NoSuchMethodException e) { ModelUIPlugin.getPluginLog().logError(e); } } // IFormFactory public IForm getForm() { IForm form = null; String entity = getXModelObject().getModelEntity().getName(); IFormData formData = formLayoutData.getFormData(entity); if(formData == null) { String message = "Cannot find form for entity " + entity + "."; //$NON-NLS-1$ //$NON-NLS-2$ ModelUIPlugin.getPluginLog().logError(message); } else if(formData.getForms() != null) { form = new FormContainer(formData); } else { form = new DefaultFormContainer(new Form(formData)); } return form; } }