Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8fe37afccf49b37d9ed2a5e244b6144edd44772c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/**
 *  Copyright (c) 2013 Soft-Maint.
 *  
 *  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:
 *      David Couvrand (Soft-Maint) - Bug 422058 - Implementation of strikethrough and underline in the CustomizedLabelProvider
 */
package org.eclipse.papyrus.emf.facet.custom.ui;

import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.FacetOperation;

/**
 * @since 0.4
 */
public interface IFontPropertiesHandler {

	FacetOperation getBackgroundProperty();

	FacetOperation getForegroundProperty();

	FacetOperation getFontNameProperty();

	FacetOperation getFontSizeProperty();

	FacetOperation getIsBoldProperty();

	FacetOperation getIsItalicProperty();

	FacetOperation getIsVisible();

	FacetOperation getIsUnderlinedProperty();

	FacetOperation getIsStruckthroughProperty();
}

Back to the top