/******************************************************************************* * Copyright (c) 2006-2013 The RCP Company 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: * The RCP Company - initial API and implementation *******************************************************************************/ package com.rcpcompany.uibindings.internal.uiAttributeFactories; import org.eclipse.core.databinding.observable.value.WritableValue; import org.eclipse.swt.custom.StyledText; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Table; import org.eclipse.swt.widgets.Tree; import org.eclipse.swt.widgets.Widget; import com.rcpcompany.uibindings.IUIAttribute; import com.rcpcompany.uibindings.IUIAttributeFactory; import com.rcpcompany.uibindings.uiAttributes.SimpleUIAttribute; /** * {@link IUIAttributeFactory} for a number of different large area widgets, such as * {@link Composite}, {@link Table}, {@link StyledText}, {@link Tree}, etc.. * <p> * This factory does NOT really connect to anything in the widgets. * * @author Tonny Madsen, The RCP Company */ public class LargeAreaMessagesOnlyUIAttributeFactory implements IUIAttributeFactory { @Override public IUIAttribute create(Widget widget, String attribute) { return new SimpleUIAttribute(widget, attribute, new WritableValue(null, String.class), false); } }