01: /*******************************************************************************
02: * Copyright (c) 2007-2008 Kirill Grouchnikov and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *******************************************************************************/package org.jvnet.substance.bramble;
08:
09: import org.jvnet.lafplugin.LafComponentPlugin;
10: import org.jvnet.substance.SubstanceLookAndFeel;
11:
12: public class SubstanceBramblePlugin implements LafComponentPlugin {
13:
14: public Object[] getDefaults(Object arg0) {
15: return null;
16: }
17:
18: public void initialize() {
19: SubstanceLookAndFeel
20: .setCurrentTextPainter(new BrambleTextPainter());
21: }
22:
23: public void uninitialize() {
24: }
25: }
|