package org.eclipse.papyrus.uml.diagram.statemachine.custom.figures; import org.eclipse.draw2d.Border; import org.eclipse.draw2d.Graphics; import org.eclipse.draw2d.Label; import org.eclipse.draw2d.geometry.Dimension; import org.eclipse.draw2d.geometry.Insets; import org.eclipse.draw2d.geometry.Rectangle; import org.eclipse.gmf.runtime.draw2d.ui.figures.FigureUtilities; import org.eclipse.papyrus.uml.diagram.common.figure.node.IPapyrusNodeUMLElementFigure; import org.eclipse.papyrus.uml.diagram.common.figure.node.PapyrusNodeFigure; import org.eclipse.swt.graphics.Color; import org.eclipse.swt.graphics.Image; public class PseudostateJoinForkFigure extends PapyrusNodeFigure implements IPapyrusNodeUMLElementFigure { /** * {@inheritDoc} */ protected Border getDefaultBorder(Color borderColor) { return null; } /** * {@inheritDoc} */ @Override public Dimension getPreferredSize(int wHint, int hHint) { return new Dimension(10, 10); } /** * {@inheritDoc} */ public Label getStereotypesLabel() { return new Label(); } /** * {@inheritDoc} */ public void paintFigure(Graphics graphics) { Rectangle r = getBounds().getCopy().crop(new Insets(0, 0, 1, 1)); if(isUsingGradient()) { graphics.setBackgroundColor(FigureUtilities.integerToColor(getGradientColor2())); //graphics.setForegroundColor(FigureUtilities.integerToColor(getGradientColor2())); } else { graphics.setBackgroundColor(getBackgroundColor()); //graphics.setForegroundColor(getForegroundColor()); } graphics.fillRectangle(r); graphics.setLineWidth(1); graphics.drawRectangle(r); } /** * {@inheritDoc} */ public void setStereotypeDisplay(String stereotypes, Image image) { } /** * {@inheritDoc} */ public void setStereotypePropertiesInBrace(String stereotypeProperties) { } /** * {@inheritDoc} */ public void setStereotypePropertiesInCompartment(String stereotypeProperties) { } }