/******************************************************************************* * 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 org.eclipse.swt.layout.GridData; /** * @author Igels * * To change the template for this generated type comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ public class LayoutDataFactory implements ILayoutDataFactory { private static LayoutDataFactory INSTANCE = new LayoutDataFactory(); private LayoutDataFactory() { } public static LayoutDataFactory getInstance() { return INSTANCE; } /* (non-Javadoc) * @see org.jboss.tools.common.model.ui.forms.ILayoutDataFactory#createLayoutData(org.jboss.tools.common.model.ui.forms.AttributeControlType) */ public Object createLayoutData(AttributeControlType type) { if(type == AttributeControlType.LABEL) { return new GridData(); } else if(type == AttributeControlType.EDITOR) { return new GridData(GridData.FILL_HORIZONTAL); } throw new FormRuntimeException("Attribute control type may be only Label or Editor but this is " + type); } }