blob: 2e468953a37733e3577cb59306c925896099ce25 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2012 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 API and implementation
*******************************************************************************/
package org.eclipse.bpel.ui.editparts.figures;
import org.eclipse.bpel.ui.editparts.borders.PickBorder;
import org.eclipse.swt.graphics.Image;
/**
* A CollapsableContainerFigure which has a new PickBorder.
* @author ascharf
*
*/
public class CollapsablePickContainerFigure extends CollapsableContainerFigure {
public CollapsablePickContainerFigure(Object modelObject, Image image, String text){
super(modelObject, image, text);
}
@Override
protected void initializeBorder() {
this.border = new PickBorder(this, this.borderImage, this.borderText);
}
}