// ============================================================================ // // Copyright (C) 2006-2012 Talend Inc. - www.talend.com // // This source code is available under agreement available at // %InstallDIR%\features\org.talend.rcp.branding.%PRODUCTNAME%\%PRODUCTNAME%license.txt // // You should have received a copy of the agreement // along with this program; if not, write to Talend SA // 9 rue Pages 92150 Suresnes, France // // ============================================================================ package org.talend.core.model.process; import org.eclipse.swt.SWT; /** * Informations below are copy from Draw2d, in case of any change of Draw2d, should update. */ public interface IDraw2dGraphics { public static final int LINE_CUSTOM = SWT.LINE_CUSTOM; /** * @see SWT#LINE_DASH */ public static final int LINE_DASH = SWT.LINE_DASH; /** * @see SWT#LINE_DASHDOT */ public static final int LINE_DASHDOT = SWT.LINE_DASHDOT; /** * @see SWT#LINE_DASHDOTDOT */ public static final int LINE_DASHDOTDOT = SWT.LINE_DASHDOTDOT; /** * @see SWT#LINE_DOT */ public static final int LINE_DOT = SWT.LINE_DOT; /** * @see SWT#LINE_SOLID */ public static final int LINE_SOLID = SWT.LINE_SOLID; }