src/share/classes/sun/util/xml/PrefsXmlSupport.java
author Jaroslav Tulach <jtulach@netbeans.org>
Wed, 24 Jun 2009 17:29:29 +0200
branchxml-sax-and-dom-2
changeset 1263 24b6c30fbf71
parent 1260 1ef89a94ad93
permissions -rw-r--r--
Simple output of Preferences is the same as the original one via DOM
     1 /*
     2  * Copyright 2002-2006 Sun Microsystems, Inc.  All Rights Reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Sun designates this
     8  * particular file as subject to the "Classpath" exception as provided
     9  * by Sun in the LICENSE file that accompanied this code.
    10  *
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14  * version 2 for more details (a copy is included in the LICENSE file that
    15  * accompanied this code).
    16  *
    17  * You should have received a copy of the GNU General Public License version
    18  * 2 along with this work; if not, write to the Free Software Foundation,
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20  *
    21  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    22  * CA 95054 USA or visit www.sun.com if you need additional information or
    23  * have any questions.
    24  */
    25 
    26 package sun.util.xml;
    27 
    28 import java.util.*;
    29 import java.util.prefs.*;
    30 import java.io.*;
    31 
    32 /**
    33  * XML Support for java.util.prefs. Methods to import and export preference
    34  * nodes and subtrees.
    35  *
    36  * @author  Josh Bloch and Mark Reinhold
    37  * @see     Preferences
    38  * @since   1.4
    39  */
    40 public abstract class PrefsXmlSupport {
    41     public static PrefsXmlSupport getDefault() {
    42         Iterator<PrefsXmlSupport> it = ServiceLoader.load(PrefsXmlSupport.class).iterator();
    43         return it.hasNext() ? it.next() : new DefaultPrefsXmlSupport();
    44     }
    45 
    46     public abstract void export(OutputStream os, final Preferences p, boolean subTree)
    47         throws IOException, BackingStoreException;
    48 
    49     /**
    50      * Import preferences from the specified input stream, which is assumed
    51      * to contain an XML document in the format described in the Preferences
    52      * spec.
    53      *
    54      * @throws IOException if reading from the specified output stream
    55      *         results in an <tt>IOException</tt>.
    56      * @throws InvalidPreferencesFormatException Data on input stream does not
    57      *         constitute a valid XML document with the mandated document type.
    58      */
    59     public abstract void importPreferences(InputStream is)
    60         throws IOException, InvalidPreferencesFormatException;
    61 
    62 
    63     public abstract void importMap(InputStream is, Map m)
    64         throws IOException, InvalidPreferencesFormatException;
    65 
    66     public abstract void exportMap(OutputStream is, Map m)
    67         throws IOException, InvalidPreferencesFormatException;
    68 
    69 }