Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 328e409d6ac0ba59e92951680b47ffd1acb17cae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*******************************************************************************
 * Copyright (c) 2004, 2008 John Krasnay 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:
 *     John Krasnay - initial API and implementation
 *******************************************************************************/
package org.eclipse.vex.core.internal.core;

/**
 * Wrapper for a toolkit-defined font. Fonts are system-defined resources. They must be retrieved from the
 * Graphics.createFont method, and must be disposed when no longer needed.
 */
public interface FontResource {

	public void dispose();
}

Back to the top