blob: a608387ae41d12f6cf13bb487a30b187f777083c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 Sybase, Inc. 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:
* Sybase, Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.pagedesigner.figurehandler;
import org.eclipse.jst.pagedesigner.PDPlugin;
import org.eclipse.swt.graphics.Image;
import org.w3c.dom.Element;
/**
* @author mengbo
* @version 1.5
*/
public class ObjectFigureHandler extends ImgFigureHandler {
/*
* (non-Javadoc)
*
* @see org.eclipse.jst.pagedesigner.figurehandler.ImgFigureHandler#initializeImage()
*/
protected void initializeImage(Element node) {
if (_image == null) {
_image = new Image(null, PDPlugin.getDefault().getImage(
"palette/HTML/small/HTML_OBJECT.gif").getImageData());
}
}
}