blob: 6cbd80e7ac7d1b9c36b92e6a3d4bf6647bc87710 [file] [log] [blame]
//------------------------------------------------------------------------------
// Copyright (c) 2005, 2007 IBM Corporation 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:
// IBM Corporation - initial implementation
//------------------------------------------------------------------------------
package org.eclipse.epf.authoring.ui.util;
import org.eclipse.epf.authoring.ui.richtext.IMethodRichText;
import org.eclipse.ui.forms.widgets.ImageHyperlink;
/**
* Simple container class used as a return value for FormUI convenience methods
* @author Jeff Hardy
*
*/
public class RichTextImageLinkContainer {
public IMethodRichText richText;
public ImageHyperlink link;
public RichTextImageLinkContainer(IMethodRichText richText, ImageHyperlink link) {
this.richText = richText;
this.link = link;
}
}