Here you can find the source of installPrefsHandler(Preferences prefs, String string, JTabbedPane tabbedPane)
public static void installPrefsHandler(Preferences prefs, String string, JTabbedPane tabbedPane)
//package com.java2s; /*/*from w w w . j a va 2s .c om*/ * @(#)PreferencesUtil.java * * Copyright (c) 2005-2008 by the original authors of JHotDraw and all its * contributors. All rights reserved. * * You may not use, copy or modify this file, except in compliance with the * license agreement you entered into with the copyright holders. For details * see accompanying license terms. */ import java.util.prefs.*; import javax.swing.*; public class Main { public static void installPrefsHandler(Preferences prefs, String string, JTabbedPane tabbedPane) { throw new UnsupportedOperationException("Not yet implemented"); } }