7179155 VP core package should not depend on SMF module
authorDan Labrecque <dan.labrecque@oracle.com>
Fri, 22 Jun 2012 04:06:30 -0400
changeset 891 261cfb9e0648
parent 890 52b950a1bc32
child 892 fe7f5469cc2d
7179155 VP core package should not depend on SMF module
components/visual-panels/core/src/apis/smf.xml
components/visual-panels/core/src/java/Makefile
components/visual-panels/core/src/java/smf/build.xml
components/visual-panels/core/system-management-visual-panels-core.p5m
components/visual-panels/core/system-management-visual-panels-doc.p5m
--- a/components/visual-panels/core/src/apis/smf.xml	Fri Jun 22 02:42:13 2012 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1929 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
-<!--
-  CDDL HEADER START
-
-  The contents of this file are subject to the terms of the
-  Common Development and Distribution License (the "License").
-  You may not use this file except in compliance with the License.
-
-  You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
-  or http://www.opensolaris.org/os/licensing.
-  See the License for the specific language governing permissions
-  and limitations under the License.
-
-  When distributing Covered Code, include this CDDL HEADER in each
-  file and include the License file at usr/src/OPENSOLARIS.LICENSE.
-  If applicable, add the following below this CDDL HEADER, with the
-  fields enclosed by brackets "[]" replaced with your own identifying
-  information: Portions Copyright [yyyy] [name of copyright owner]
-
-  CDDL HEADER END
-
-  Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
--->
-
-<api xmlns="http://xmlns.oracle.com/radadr"
-  name="com.oracle.solaris.rad.smf">
-
-  <doc>
-    <para>
-      This API exposes common SMF configuration, actions, and state to
-      <strong>rad(1m)</strong> clients.
-    </para>
-
-    <para>
-      Three core interfaces are provided:
-    </para>
-
-    <list type="ordered">
-      <item>
-        <link interface="Master">Master</link> - a top-level object providing access
-        to all services and instances on the system
-      </item>
-      <item>
-        <link interface="Service">Service</link> - an object that represents an SMF
-	service
-      </item>
-      <item>
-        <link interface="Instance">Instance</link> - an object that represents an SMF
-	instance
-      </item>
-    </list>
-
-    <para>
-      The latter two interfaces, <link interface="Service">Service</link> and <link
-      interface="Instance">Instance</link>, are derived from a common <link
-      interface="Entity">Entity</link> interface.
-    </para>
-
-    <heading>
-      Python SMF wrapper
-    </heading>
-
-    <para>
-      Provided alongside this API is a convenience wrapper around the
-      Python bindings to this API.  Accessible by importing
-      <code>smf.rad</code> from within a Python application, this wrapper
-      simplifies access to the <link interface="Master">Master</link>, <link
-      interface="Service">Service</link>, and <link interface="Instance">Instance</link>
-      objects.
-    </para>
-
-    <para>
-      Run <code>/usr/bin/pydoc smf.rad</code> for more information.
-    </para>
-  </doc>
-
-  <!-- Entity (service/instance common) definitions -->
-
-  <enum name="DepGrouping">
-    <summary>
-      indicates how dependencies are evaluated
-    </summary>
-    <value name="REQUIRE_ALL">
-      <summary>
-        all dependencies must be satisfied
-      </summary>
-    </value>
-    <value name="REQUIRE_ANY">
-      <summary>
-        only one dependency must be satisfied
-      </summary>
-    </value>
-    <value name="EXCLUDE_ALL">
-      <summary>
-        no dependency may be satisfied
-      </summary>
-    </value>
-    <value name="OPTIONAL_ALL">
-      <summary>
-        all satisfiable dependencies must be satisfied
-      </summary>
-    </value>
-  </enum>
-
-  <enum name="DepRestart">
-    <summary>
-      describes when the dependent should be restarted
-    </summary>
-    <value name="ERROR">
-      <summary>
-        restart when a dependency encounters an error
-      </summary>
-    </value>
-    <value name="RESTART">
-      <summary>
-        restart any time a dependency restarts
-      </summary>
-    </value>
-    <value name="REFRESH">
-      <summary>
-        restart when a dependency is refreshed
-      </summary>
-    </value>
-    <value name="NONE">
-      <summary>
-        only process dependencies when starting instance
-      </summary>
-    </value>
-  </enum>
-
-  <struct name="Dependency">
-    <summary>
-      describes a dependency group
-    </summary>
-    <doc>
-      Fully describes a dependency group, including
-      the FMRIs for the dependencies, the type of
-      dependency, and when the dependency should be
-      evaluated.
-    </doc>
-    <field type="string" name="name">
-      <summary>
-        the name of the dependency group
-      </summary>
-    </field>
-    <field name="target">
-      <summary>
-        the list of dependencies' FMRIs
-      </summary>
-      <list type="string" />
-    </field>
-    <field typeref="DepGrouping" name="grouping">
-      <summary>
-        how the dependencies are evaluated
-      </summary>
-    </field>
-    <field typeref="DepRestart" name="restartOn">
-      <summary>
-        when the dependent should be restarted
-      </summary>
-    </field>
-  </struct>
-
-  <enum name="PropertyType">
-    <summary>an SMF property type</summary>
-    <value name="UNKNOWN" value="0" />   <!-- INVALID -->
-    <value name="BOOLEAN" />
-    <value name="COUNT" />
-    <value name="INTEGER" />
-    <value name="TIME" />
-    <value name="ASTRING" />
-    <value name="OPAQUE" />
-    <value name="USTRING" value="100" />
-    <value name="URI" value="200" />
-    <value name="FMRI" />
-    <value name="HOST" value="300" />
-    <value name="HOSTNAME" />
-    <value name="NET_ADDRESS_V4" />
-    <value name="NET_ADDRESS_V6" />
-    <value name="NET_ADDRESS" />
-  </enum>
-
-  <struct name="Property">
-    <summary>an SMF property and its values</summary>
-    <doc>
-      Describes a property, its type, and all its values.
-    </doc>
-    <field type="string" name="name">
-      <summary>the name of the property</summary>
-    </field>
-    <field typeref="PropertyType" name="type">
-      <summary>the type of the property</summary>
-    </field>
-    <field name="values">
-      <summary>all the property's values</summary>
-      <doc>
-        A list of all the values held by the
-        property.  A single-valued property
-        will have a list of length 1.  A
-        property with no values will have a
-        list of length 0.
-      </doc>
-      <list type="string" />
-    </field>
-  </struct>
-
-  <struct name="Manpage">
-    <summary>a description of a man page</summary>
-    <doc>
-      Provides all the information needed to find a
-      man page.  The referenced man page can be
-      displayed by running <code>MANPATH=$path man
-      -s $section $title</code>.
-    </doc>
-    <field type="string" name="title">
-      <summary>the man page name</summary>
-    </field>
-    <field type="string" name="section">
-      <summary>the section the man page is found in</summary>
-    </field>
-    <field type="string" name="path" nullable="true">
-      <summary>the path the man page is found in</summary>
-      <doc>
-        The colon-separated <code>MANPATH</code> the
-        man page is found in.  If this field
-        has no value, the default
-        <code>MANPATH</code> should to be used.
-      </doc>
-    </field>
-  </struct>
-
-  <struct name="Doclink">
-    <summary>an on-line documentation link</summary>
-    <field type="string" name="name">
-      <summary>an informative name for the document</summary>
-    </field>
-    <field type="string" name="uri">
-      <summary>the URI of the document</summary>
-    </field>
-  </struct>
-
-  <struct name="PropertyGroup">
-    <summary>an SMF property group</summary>
-    <field type="string" name="name">
-      <summary>the name of the property group</summary>
-    </field>
-    <field type="string" name="type">
-      <summary>the type of the property group</summary>
-    </field>
-    <field type="uinteger" name="flags">
-      <summary>the property group flags</summary>
-    </field>
-  </struct>
-
-  <struct name="PGTemplate">
-    <summary>template data for a property group</summary>
-    <field type="string" name="pgname">
-      <summary>the property group name</summary>
-    </field>
-    <field type="string" name="pgtype">
-      <summary>the property group type</summary>
-    </field>
-    <field type="boolean" name="required">
-      <summary>is the property group required?</summary>
-    </field>
-    <field type="string" name="name" nullable="true">
-      <summary>a localized name</summary>
-    </field>
-    <field type="string" name="description" nullable="true">
-      <summary>a localized description</summary>
-    </field>
-  </struct>
-
-  <enum name="PropertyVisibility">
-    <summary>the recommended visibility of a property</summary>
-    <value name="HIDDEN">
-      <summary>the property shouldn't be displayed</summary>
-    </value>
-    <value name="READONLY">
-      <summary>
-        the property isn't intended to be modified
-      </summary>
-    </value>
-    <value name="READWRITE">
-      <summary>the property is modifiable</summary>
-    </value>
-  </enum>
-
-  <struct name="PropTemplate">
-    <summary>template data for a property</summary>
-    <field type="string" name="propname">
-      <summary>the name of the property</summary>
-    </field>
-    <field typeref="PropertyType" name="proptype">
-      <summary>the type of the property</summary>
-    </field>
-    <field type="boolean" name="required">
-      <summary>is the property required?</summary>
-    </field>
-    <field type="string" name="name" nullable="true">
-      <summary>a localized name</summary>
-    </field>
-    <field type="string" name="description" nullable="true">
-      <summary>a localized description</summary>
-    </field>
-    <field type="string" name="units" nullable="true">
-      <summary>a localized units label</summary>
-    </field>
-    <field typeref="PropertyVisibility" name="visibility">
-      <summary>how the property should be presented</summary>
-    </field>
-    <field type="ulong" name="cardinality_min">
-      <summary>the minimum number of values</summary>
-    </field>
-    <field type="ulong" name="cardinality_max">
-      <summary>the maximum number of values</summary>
-    </field>
-    <field name="separators" nullable="true">
-      <summary>value separator characters</summary>
-      <doc>
-        Separator characters used to embed
-        multiple values in a single property
-        value.
-      </doc>
-      <list type="string" />
-    </field>
-    <!-- XXX: Choices, constraints needed -->
-  </struct>
-
-  <struct name="PropChange">
-    <summary>a change to make to a property</summary>
-    <field type="string" name="name">
-      <summary>the property to change</summary>
-    </field>
-    <field typeref="PropertyType" name="type">
-      <summary>the type of the property to write</summary>
-    </field>
-    <field name="values">
-      <summary>a list of values</summary>
-      <list type="string" />
-    </field>
-  </struct>
-
-  <enum name="ErrorCode">
-    <summary>the general cause for failure</summary>
-    <doc>
-      Indicates the general cause for failure.
-      Specific meanings are defined by the individual
-      APIs.
-    </doc>
-    <value name="INTERNAL">
-      <summary>an internal error occurred</summary>
-    </value>
-    <value name="DENIED">
-      <summary>access denied</summary>
-    </value>
-    <value name="READONLY">
-      <summary>configuration database is read only</summary>
-    </value>
-    <value name="NOTFOUND">
-      <summary>named object wasn't found</summary>
-    </value>
-    <value name="EXISTS">
-      <summary>name is already in use</summary>
-    </value>
-    <value name="BADVALUE">
-      <summary>an illegal value was supplied</summary>
-    </value>
-    <value name="BADSTATE">
-      <summary>system was in an invalid state</summary>
-    </value>
-    <value name="INVALID">
-      <summary>API was called incorrectly</summary>
-    </value>
-  </enum>
-
-  <enum name="ErrorTarget">
-    <value name="NONE" />
-    <value name="SNAPSHOT" />
-    <value name="PROPERTYGROUP" />
-    <value name="PROPERTY" />
-    <value name="VALUE" />
-  </enum>
-
-  <struct name="SmfError">
-    <field typeref="ErrorCode" name="error" />
-    <field typeref="ErrorTarget" name="target" />
-    <field type="string" name="aux" nullable="true" />
-    <field type="string" name="message" nullable="true" />
-  </struct>
-
-  <interface name="Entity">
-    <summary>
-      functionality common to services and instances
-    </summary>
-
-    <property type="string" name="fmri" access="ro">
-      <summary>
-        the service/instance's FMRI
-      </summary>
-    </property>
-
-    <property type="string" name="scope" access="ro">
-      <summary>
-        the service/instance's scope
-      </summary>
-    </property>
-
-    <property type="string" name="service" access="ro">
-      <summary>
-        the service name of the service/instance
-      </summary>
-    </property>
-
-    <property name="dependencies" access="ro">
-      <summary>
-        the service/instance's dependencies
-      </summary>
-      <doc>
-        A list of dependency objects describing
-        the full nature of each dependency.  An
-        empty list is returned if there are no
-        dependencies.
-      </doc>
-      <list typeref="Dependency" />
-      <error typeref="SmfError">
-        <doc>
-          An internal SMF error occurred.
-        </doc>
-      </error>
-    </property>
-
-    <property name="manpages" access="ro">
-      <summary>
-        the service/instance's manual pages
-      </summary>
-      <doc>
-        A list of manual page objects
-        describing the name, section, and path
-        of each relevant manual page.  An empty
-        list is returned if no manual pages are
-        defined.
-      </doc>
-      <list typeref="Manpage" />
-      <error typeref="SmfError">
-        <doc>
-          An internal SMF error occurred.
-        </doc>
-      </error>
-    </property>
-
-    <property name="doclinks" access="ro">
-      <summary>
-        documentation links
-      </summary>
-      <doc>
-        A list of links to on-line
-        documentation for the
-        service/instance.  An empty list is
-        returned if no on-line documents are
-        defined.
-      </doc>
-      <list typeref="Doclink" />
-      <error typeref="SmfError">
-        <doc>
-          An internal SMF error occurred.
-        </doc>
-      </error>
-    </property>
-
-    <property name="pgs" access="ro">
-      <summary>
-        directly-attached property groups
-      </summary>
-      <doc>
-        A list of all directly-attached
-        property groups, including name,
-        type and flags for each.
-      </doc>
-      <list typeref="PropertyGroup" />
-      <error typeref="SmfError">
-        <doc>
-          An internal SMF error occurred.
-        </doc>
-      </error>
-    </property>
-
-    <method name="delete">
-      <summary>
-        delete the service/instance
-      </summary>
-      <doc>
-        Delete the service or instance.
-      </doc>
-      <error typeref="SmfError">
-        <doc>
-          <para>
-            Failed to delete the service or
-            instance.  Cause:
-          </para>
-          <list>
-            <item><code>INTERNAL</code> -
-              an internal error occurred
-            </item>
-            <item><code>DENIED</code> -
-              insufficient authorization
-            </item>
-            <item><code>READONLY</code> -
-              the repository is read-only
-            </item>
-            <item><code>EXISTS</code> -
-              delete was called on a service
-              and the service still had
-              instances
-            </item>
-          </list>
-        </doc>
-      </error>
-    </method>
-
-    <method name="deleteCust">
-      <summary>
-	delete administrative customizations
-      </summary>
-      <doc>
-	Delete all administrative customizations
-	applied to a service/instance and its 
-	children, if any exist.
-      </doc>
-      <error typeref="SmfError">
-	<doc>
-	  <para>
-	    Failed to delete the administrative 
-	    customizations applied to a service or
-	    instance.  Cause:
-	  </para>
-	  <list>
-	    <item><code>INTERNAL</code> -
-	    an internal error occurred
-	    </item>
-	    <item><code>DENIED</code> -
-	    insufficient authorization
-	    </item>
-	    <item><code>READONLY</code> -
-	    the repository is read-only
-	    </item>
-	  </list>
-	</doc>
-      </error>
-    </method>
-
-    <method name="createPG">
-      <summary>
-        create a property group
-      </summary>
-      <doc>
-        Create a property group on the
-        service/instance.
-      </doc>
-      <error typeref="SmfError">
-        <doc>
-          <para>
-            Failed to create the property
-            group.  Cause:
-          </para>
-          <list>
-            <item><code>INTERNAL</code> -
-              an internal error occurred
-            </item>
-            <item><code>DENIED</code> -
-              insufficient authorization
-            </item>
-            <item><code>READONLY</code> -
-              the repository is read-only
-            </item>
-            <item><code>EXISTS</code> -
-              the propery group already exists
-            </item>
-            <item><code>BADVALUE</code> -
-              an invalid property group name
-              or type was specified
-            </item>
-          </list>
-        </doc>
-      </error>
-      <argument type="string" name="pg_name">
-        <summary>
-          the name of the new property group
-        </summary>
-      </argument>
-      <argument type="string" name="pg_type">
-        <summary>
-          the type of the new property group
-        </summary>
-      </argument>
-      <argument type="uinteger" name="pg_flags">
-	<summary>
-	  the property group flags
-	</summary>
-      </argument>
-    </method>
-
-    <method name="deletePG">
-      <summary>
-        delete a property group
-      </summary>
-      <doc>
-        Delete a directly-attached property
-        group and all its properties from the
-        service/instance.
-      </doc>
-      <error typeref="SmfError">
-        <doc>
-          <para>
-            Failed to delete the property
-            group.  Cause:
-          </para>
-          <list>
-            <item><code>INTERNAL</code> -
-              an internal error occurred
-            </item>
-            <item><code>DENIED</code> -
-              insufficient authorization
-            </item>
-            <item><code>READONLY</code> -
-              the repository is read-only
-            </item>
-            <item><code>NOTFOUND</code> -
-              the property group doesn't exist
-            </item>
-          </list>
-        </doc>
-      </error>
-      <argument type="string" name="pg_name">
-        <summary>
-          the name of the property group
-        </summary>
-      </argument>
-    </method>
-
-    <method name="deletePGCust">
-      <summary>
-	delete administrative customizations
-      </summary>
-      <doc>
-	Delete all administrative customizations
-	applied to a property group and its children, 
-	if any exist.
-      </doc>
-      <error typeref="SmfError">
-	<doc>
-	  <para>
-	    Failed to delete the administrative customizations
-	    applied to a property group.  Cause:
-	  </para>
-	  <list>
-	    <item><code>INTERNAL</code> -
-	    an internal error occurred
-	    </item>
-	    <item><code>DENIED</code> -
-	    insufficient authorization
-	    </item>
-	    <item><code>READONLY</code> -
-	    the repository is read-only
-	    </item>
-	    <item><code>NOTFOUND</code> -
-	    the property group doesn't
-	    exist
-	    </item>
-	  </list>
-	</doc>
-      </error>
-      <argument type="string" name="pg_name">
-	<summary>
-	  the name of the property group
-	</summary>
-      </argument>
-    </method>
-
-    <method name="readProperties">
-      <summary>
-        reads all properties in a directly-attached
-        property group
-      </summary>
-      <doc>
-        Read all properties in the specified
-        directly-attached property group.  The
-        name, type, and values of each property
-        are included.
-      </doc>
-      <result>
-        <summary>
-          a list of properties in the
-          specified directly-attached
-          property group
-        </summary>
-        <list typeref="Property" />
-      </result>
-      <error typeref="SmfError">
-        <doc>
-          <para>
-            Failed to read properties from
-            the property group. Cause:
-          </para>
-          <list>
-            <item><code>INTERNAL</code> -
-              an internal error occurred
-            </item>
-            <item><code>DENIED</code> -
-              insufficient authorization
-            </item>
-            <item><code>NOTFOUND</code> -
-              the property group doesn't exist
-            </item>
-          </list>
-        </doc>
-      </error>
-      <argument type="string" name="pg_name">
-        <summary>
-          the name of the property group
-        </summary>
-      </argument>
-    </method>
-
-    <method name="writeProperties">
-      <summary>
-        commit a list of property changes to a
-        property group
-      </summary>
-      <doc>
-        <para>
-        Commit a set of property changes to
-        the specified property group.  Each
-        property change specifies a property,
-        type, and optional set of values.  If
-        the property specified by a property
-        change doesn't exist prior to the call,
-        it will be created by the call.  If the
-        property specified by a property change
-        exists prior to the call but has a
-        different type, its type will be set to
-        the type specified by the call.
-        </para>
-        <para>
-        If the call succeeds, all the requested
-        property changes were made.  If the
-        call fails, none of the requested
-        changes were made.
-        </para>
-      </doc>
-      <error typeref="SmfError">
-        <doc>
-          <para>
-            Failed to make all the
-            requested property changes.
-            Cause:
-          </para>
-          <list>
-            <item><code>INTERNAL</code> -
-              an internal error occurred
-            </item>
-            <item><code>DENIED</code> -
-              insufficient authorization
-            </item>
-            <item><code>READONLY</code> -
-              the repository is read-only
-            </item>
-            <item><code>NOTFOUND</code> -
-              the property group doesn't
-              exist (see target)
-            </item>
-            <item><code>BADVALUE</code> -
-              a property had an invalid name,
-              or a value couldn't be
-              converted to the requested type
-              (see target, aux)
-            </item>
-            <item><code>INVALID</code> -
-              the same property was
-              referenced by two
-              <code>PropertyChange</code>s.
-            </item>
-          </list>
-          <para>
-            When an invidual property is
-            the cause of the error, its
-            name will be returned in
-            <code>aux</code>.
-          </para>
-        </doc>
-      </error>
-      <argument type="string" name="pg_name">
-        <summary>
-          the name of the property group
-        </summary>
-      </argument>
-      <argument name="props">
-        <summary>
-          the set of changes to apply
-        </summary>
-        <list typeref="PropChange" />
-      </argument>
-    </method>
-
-    <method name="readProperty">
-      <summary>
-        read a single directly-attached property's
-        values
-      </summary>
-      <doc>
-        Read a single property from the
-        specified directly-attached property
-        group.  The result includes the name,
-        type, and values of the property.
-      </doc>
-      <result typeref="Property">
-        <summary>
-          the specified property
-        </summary>
-      </result>
-      <error typeref="SmfError">
-        <doc>
-          <para>
-            Failed to read the specified
-            property. Cause:
-          </para>
-          <list>
-            <item><code>INTERNAL</code> -
-              an internal error occurred
-            </item>
-            <item><code>DENIED</code> -
-              insufficient authorization
-            </item>
-            <item><code>NOTFOUND</code> -
-              the property or property group
-              doesn't exist (see target)
-            </item>
-          </list>
-        </doc>
-      </error>
-      <argument type="string" name="pg_name">
-        <summary>
-          the name of the property group
-        </summary>
-      </argument>
-      <argument type="string" name="prop_name">
-        <summary>
-          the name of the property
-        </summary>
-      </argument>
-    </method>
-
-    <method name="writeProperty">
-      <summary>
-        writes a list of values to a property
-      </summary>
-      <doc>
-        <para>
-          Change the specified property. If the 
-	  property doesn't exist prior to the 
-	  call, it will be created by the call.
-	  If the property exists prior to the 
-	  call but has a different type, its 
-	  type will be set to the type
-	  specified by the call.
-        </para>
-      </doc>
-      <error typeref="SmfError">
-        <doc>
-          <para>
-            Failed to make the requested
-            property change. Cause:
-          </para>
-          <list>
-            <item><code>INTERNAL</code> -
-              an internal error occurred
-            </item>
-            <item><code>DENIED</code> -
-              insufficient authorization
-            </item>
-            <item><code>READONLY</code> -
-              the repository is read-only
-            </item>
-            <item><code>NOTFOUND</code> -
-              the property group doesn't
-              exist (see target)
-            </item>
-            <item><code>BADVALUE</code> -
-              the property had an invalid
-              name, or a value couldn't be
-              converted to the requested type
-              (see target)
-            </item>
-          </list>
-        </doc>
-      </error>
-      <argument type="string" name="pg_name">
-        <summary>
-          the name of the property group
-        </summary>
-      </argument>
-      <argument type="string" name="prop_name">
-        <summary>
-          the name of the property
-        </summary>
-      </argument>
-      <argument typeref="PropertyType" name="prop_type">
-        <summary>
-          the type of the property
-        </summary>
-      </argument>
-      <argument name="values">
-        <summary>
-          the new values for the property
-        </summary>
-        <list type="string" />
-      </argument>
-    </method>
-
-    <method name="deleteProperty">
-      <summary>
-	delete a property
-      </summary>
-      <doc>
-	<para>
-	  Delete a property from the service/instance.
-	</para>
-      </doc>
-      <error typeref="SmfError">
-	<doc>
-	  <para>
-	    Failed to delete the property.
-	    Cause:
-	  </para>
-	  <list>
-	    <item><code>INTERNAL</code> -
-	    an internal error occurred
-	    </item>
-	    <item><code>DENIED</code> -
-	    insufficient authorization
-	    </item>
-	    <item><code>READONLY</code> -
-	    the repository is read-only
-	    </item>
-	    <item><code>NOTFOUND</code> -
-	    the property group doesn't
-	    exist, or the property to
-	    be deleted doesn't exist (see
-	    target)
-	    </item>
-	    <item><code>BADVALUE</code> -
-	    the property had an invalid
-	    name or type (see target)
-	    </item>
-	    <item><code>INVALID</code> -
-	    the property cannot be deleted
-	    while in use (see target)
-	    </item>
-	  </list>
-	</doc>
-      </error>
-      <argument type="string" name="pg_name">
-	<summary>
-	  the name of the property group
-	</summary>
-      </argument>
-      <argument type="string" name="prop_name">
-	<summary>
-	  the name of the property
-	</summary>
-      </argument>
-    </method>
-
-    <method name="deletePropertyCust">
-      <summary>
-	delete administrative customizations
-      </summary>
-      <doc>
-	Delete all administrative customizations
-	applied to this property.
-      </doc>
-      <error typeref="SmfError">
-	<doc>
-	  <para>
-	    Failed to delete the administrative customizations
-	    applied to this property.  Cause:
-	  </para>
-	  <list>
-	    <item><code>INTERNAL</code> -
-	    an internal error occurred
-	    </item>
-	    <item><code>DENIED</code> -
-	    insufficient authorization
-	    </item>
-	    <item><code>READONLY</code> -
-	    the repository is read-only
-	    </item>
-	    <item><code>NOTFOUND</code> -
-	    the property group, or property
-	    doesn't exist (see target)
-	    </item>
-	  </list>
-	</doc>
-      </error>
-      <argument type="string" name="pg_name">
-	<summary>
-	  the name of the property group
-	</summary>
-      </argument>
-      <argument type="string" name="prop_name">
-	<summary>
-	  the name of the property
-	</summary>
-      </argument>
-    </method>
-
-    <method name="getCommonName">
-      <summary>
-        obtain the service/instance's localized
-        common name
-      </summary>
-      <doc>
-        Obtain the localized common name for the
-        service/instance, if one exists.  If a
-        common name doesn't exist for the
-        specified locale, attempts to return
-        the common name for the "C" locale
-        instead.
-      </doc>
-      <result type="string" nullable="true">
-        <summary>
-          the common name if available, or null
-        </summary>
-      </result>
-      <error typeref="SmfError">
-        <doc>
-          An internal error occurred.
-        </doc>
-      </error>
-      <argument type="string" name="locale">
-        <summary>
-          the desired locale
-        </summary>
-      </argument>
-    </method>
-
-    <method name="getDescription">
-      <summary>
-        obtain the service/instance's localized
-        description
-      </summary>
-      <doc>
-        Obtain the localized description for
-        the service/instance, if one exists.
-        If a description doesn't exist for the
-        specified locale, attempts to return
-        the description for the "C" locale
-        instead.
-      </doc>
-      <result type="string" nullable="true">
-        <summary>
-          the description if available, or null
-        </summary>
-      </result>
-      <error typeref="SmfError">
-        <doc>
-          An internal error occurred.
-        </doc>
-      </error>
-      <argument type="string" name="locale">
-        <summary>
-          the desired locale
-        </summary>
-      </argument>
-    </method>
-
-    <method name="getPGTemplates">
-      <summary>
-        obtain all property group templates
-      </summary>
-      <doc>
-        Obtain all property group templates
-        for this service/instance.  If
-        templates aren't provided for the
-        specified locale, attempts to return
-        the templates for the "C" locale
-        instead.
-      </doc>
-      <result>
-        <summary>
-          all available property group templates
-        </summary>
-        <list typeref="PGTemplate" />
-      </result>
-      <error typeref="SmfError">
-        <doc>
-          An internal error occurred.
-        </doc>
-      </error>
-      <argument type="string" name="locale">
-        <summary>
-          the desired locale
-        </summary>
-      </argument>
-    </method>
-
-    <method name="getPropTemplates">
-      <summary>
-        obtain all property templates for a
-        property group
-      </summary>
-      <doc>
-        Obtain all property templates for the
-        specified property group of this
-        service/instance.  If property
-        templates aren't provided for the
-        specified locale, attempts to return
-        the templates for the "C" locale
-        instead.  If no templates exist for
-        properties of the specified property
-        group, an empty list is returned.
-      </doc>
-      <result>
-        <summary>
-          all available property templates
-        </summary>
-        <list typeref="PropTemplate" />
-      </result>
-      <error typeref="SmfError">
-        <doc>
-          An internal error occurred.
-        </doc>
-      </error>
-      <argument type="string" name="pg_name">
-        <summary>
-          the name of the property group
-        </summary>
-      </argument>
-      <argument type="string" name="pg_type">
-        <summary>
-          the type of the property group
-        </summary>
-      </argument>
-      <argument type="string" name="locale">
-        <summary>
-          the desired locale
-        </summary>
-      </argument>
-    </method>
-  </interface>
-
-
-  <!-- Service definitions -->
-
-  <interface name="Service">
-    <summary>an SMF service object</summary>
-
-    <doc>
-      <para>
-        The <code>Service</code> interface is an <link interface="Entity">Entity</link> that
-	represents an SMF service.  Handles to this type of object can be
-        retrieved from the RAD server using an object name built with:
-      </para>
-
-      <list type="ordered">
-        <item>
-          the "<code>com.oracle.solaris.rad.smf</code>" domain name
-        </item>
-        <item>
-          a key named "<code>type</code>" paired with a value of
-          "<code>Service</code>"
-        </item>
-        <item>
-          a key named "<code>service</code>" paired with the service portion of
-          an SMF FMRI
-        </item>
-      </list>
-
-      <para>
-        Object names for services can be pulled from the <link
-        struct="Service">Service</link>s exposed by the <link interface="Master"
-        property="services">Master.services</link> property.  Or, they can be
-        built directly:
-      </para>
-
-      <example caption="Service interface (Python)">
-import rad.client
-import rad.util
-
-# Create a connection
-radconn = rad.util.connect_unix()
-
-# Retrieve a particular service
-service_name = rad.client.Name("<strong>com.oracle.solaris.rad.smf</strong>",
-    [("<strong>type</strong>", "<strong>Service</strong>"), ("<strong>service</strong>", "network/physical")])
-# Get a native-looking python object that throws RAD exceptions
-service = radconn.get_object(service_name)
-
-# Do something with our service
-print "service %s has %d instances" % (service.fmri, len(service.instances))</example>
-
-      <para>
-        If using the Python SMF convenience wrapper delivered with this
-        API, this can be simplified to:
-      </para>
-
-      <example caption="Service interface (Python, SMF wrapper)">
-import smf.rad
-
-repo = smf.rad.Repository()
-
-# Retrieve a particular service
-service = repo.lookup_byfmri("svc:/network/physical")
-
-# Do something with our service
-print "service %s has %d instances" % (service.fmri, len(service.instances))</example>
-    </doc>
-
-    <version major="1" minor="0" stability="private" />
-    <include typeref="Entity" />
-
-    <property name="instances" access="ro">
-      <summary>
-        the list of instances of this service
-      </summary>
-      <doc>
-        The list of instances of this service.
-        An empty list if the service has no
-        instances.
-      </doc>
-      <list type="string" />
-      <error typeref="SmfError">
-        <doc>
-          An internal SMF error occurred.
-        </doc>
-      </error>
-    </property>
-  </interface>
-
-
-  <!-- Instance definitions -->
-
-  <enum name="SMFState">
-    <summary>
-      the state of an SMF instance
-    </summary>
-    <value name="NONE" />
-    <value name="UNINIT" />
-    <value name="MAINT" />
-    <value name="OFFLINE" />
-    <value name="DISABLED" />
-    <value name="ONLINE" />
-    <value name="DEGRADED" />
-    <value name="LEGACY" />
-  </enum>
-
-  <struct name="ExtendedState">
-    <!-- Includes state for atomicity -->
-    <summary>
-      extended instance state information
-    </summary>
-    <field typeref="SMFState" name="state">
-      <summary>the current state of the instance</summary>
-    </field>
-    <field typeref="SMFState" name="nextState">
-      <summary>the next state of the instance</summary>
-    </field>
-    <field type="string" name="auxstate" nullable="true">
-      <summary>the auxiliary state of the instance</summary>
-    </field>
-    <field type="time" name="stime">
-      <summary>the time of last state change</summary>
-    </field>
-    <field type="integer" name="contractid">
-      <summary>the contract ID, or -1 if none</summary>
-    </field>
-    <field type="boolean" name="enabled">
-      <summary>is the instance enabled?</summary>
-    </field>
-    <field type="boolean" name="enabled_temp">
-      <summary>is the instance enabled temporarily?</summary>
-      <doc>
-        Indicates if the instance is enabled
-        temporarily. If the instance isn't
-        enabled or disable temporarily, this
-        mirrors the value of enabled.
-      </doc>
-    </field>
-  </struct>
-
-  <struct name="LogInfo">
-    <summary>instance log data</summary>
-    <field type="string" name="name">
-      <summary>the log file's name</summary>
-    </field>
-    <field type="integer" name="size">
-      <summary>the log file's size</summary>
-    </field>
-    <field type="time" name="MTime">
-      <summary>the log file's modification time</summary>
-    </field>
-    <field type="opaque" name="contents">
-      <summary>log file contents</summary>
-    </field>
-  </struct>
-
-  <interface name="Instance">
-    <summary>an SMF instance object</summary>
-
-    <doc>
-      <para>
-        The <code>Instance</code> interface is an <link interface="Entity">Entity</link>
-        that represents an SMF instance.  Handles to this type of object can be
-        retrieved from the RAD server using an object name built with:
-      </para>
-
-      <list type="ordered">
-        <item>
-          the "<code>com.oracle.solaris.rad.smf</code>" domain name
-        </item>
-        <item>
-          a key named "<code>type</code>" paired with a value of
-          "<code>Instance</code>"
-        </item>
-        <item>
-          a key named "<code>service</code>" paired with the service portion of
-          an SMF FMRI
-        </item>
-        <item>
-          a key named "<code>instance</code>" paired with the instance portion of
-          an SMF FMRI
-        </item>
-      </list>
-
-      <para>
-        Object names for instances can be pulled from the <link
-        struct="Instance">Instance</link>s exposed by the <link interface="Master"
-        property="instances">Master.instances</link> property.  Or, they can be
-        built directly:
-      </para>
-
-      <example caption="Instance interface (Python)">
-import rad.client
-import rad.util
-
-# Create a connection
-radconn = rad.util.connect_unix()
-
-# Retrieve a particular instance
-instance_name = rad.client.Name("<strong>com.oracle.solaris.rad.smf</strong>",
-    [("<strong>type</strong>", "<strong>Instance</strong>"), ("<strong>service</strong>", "network/physical"),
-    ("<strong>instance</strong>", "default")])
-# Get a native-looking python object that throws RAD exceptions
-instance = radconn.get_object(instance_name)
-
-# Do something with our instance
-print "instance %s state: %s" % (instance.fmri, instance.state)</example>
-
-      <para>
-        If using the Python SMF convenience wrapper delivered with this
-        API, this can be simplified to:
-      </para>
-
-      <example caption="Instance interface (Python, SMF wrapper)">
-import smf.rad
-
-repo = smf.rad.Repository()
-
-# Retrieve a particular instance
-instance = repo.lookup_byfmri("svc:/network/physical:default")
-
-# Do something with our instance
-print "instance %s state: %s" % (instance.fmri, instance.state)</example>
-    </doc>
-
-    <version major="1" minor="0" stability="private" />
-    <include typeref="Entity" />
-
-    <property type="string" name="instance" access="ro">
-      <summary>the name of the instance</summary>
-    </property>
-    <property type="string" name="restarter" access="ro">
-      <summary>the fmri of the instance's restarter</summary>
-      <error typeref="SmfError">
-        <doc>
-          An internal SMF error occurred.
-        </doc>
-      </error>
-    </property>
-    <property type="boolean" name="enabled" access="ro">
-      <summary>is the instance effectively enabled?</summary>
-      <error typeref="SmfError">
-        <doc>
-          An internal SMF error occurred.
-        </doc>
-      </error>
-    </property>
-    <property typeref="SMFState" name="state" access="ro">
-      <summary>the current state of the instance</summary>
-      <error typeref="SmfError">
-        <doc>
-          An internal SMF error occurred.
-        </doc>
-      </error>
-    </property>
-    <property typeref="ExtendedState" name="ex_state" access="ro">
-      <summary>the extended state of the instance</summary>
-      <error typeref="SmfError">
-        <doc>
-          An internal SMF error occurred.
-        </doc>
-      </error>
-    </property>
-    <property name="snapshots" access="ro">
-      <summary>a list of the instance's snapshots</summary>
-      <list type="string" />
-      <error typeref="SmfError">
-        <doc>
-          An internal SMF error occurred.
-        </doc>
-      </error>
-    </property>
-
-    <method name="readSnapshotPGs">
-      <summary>
-        read all property groups in the
-        composed view of the specified snapshot
-      </summary>
-      <result>
-        <list typeref="PropertyGroup" />
-      </result>
-      <error typeref="SmfError">
-        <doc>
-          <para>
-            Failed to read the list of
-            property groups. Cause:
-          </para>
-          <list>
-            <item><code>INTERNAL</code> -
-              an internal error occurred
-            </item>
-            <item><code>NOTFOUND</code> -
-              the snapshot doesn't exist
-            </item>
-          </list>
-        </doc>
-      </error>
-      <argument type="string" name="snap_name" nullable="true">
-	<summary>
-	  the name of the snapshot, or null for the running snapshot
-	</summary>
-      </argument>
-    </method>
-
-    <method name="readSnapshotProperties">
-      <summary>
-        reads all properties in the composed view
-        of the specified snapshot of a property group
-      </summary>
-      <result>
-        <list typeref="Property" />
-      </result>
-      <error typeref="SmfError">
-        <doc>
-          <para>
-            Failed to read properties from
-            the snapshot's composed view of
-            the specified property group.
-            Cause:
-          </para>
-          <list>
-            <item><code>INTERNAL</code> -
-              an internal error occurred
-            </item>
-            <item><code>DENIED</code> -
-              insufficient authorization
-            </item>
-            <item><code>NOTFOUND</code> -
-              the property group or snapshot
-              doesn't exist (see target)
-            </item>
-          </list>
-        </doc>
-      </error>
-      <argument type="string" name="snap_name" nullable="true">
-	<summary>
-	  the name of the snapshot, or null for the running snapshot
-	</summary>
-      </argument>
-      <argument type="string" name="pg_name">
-        <summary>
-          the name of the property group
-        </summary>
-      </argument>
-    </method>
-
-    <method name="readSnapshotProperty">
-      <summary>
-        reads a property in the composed view
-        of the specified snapshot
-      </summary>
-      <doc>
-        Reads a single property from the
-        composed view of the specified property
-        group.  The result includes the name,
-        type, and values of the property.
-      </doc>
-      <result typeref="Property" />
-      <error typeref="SmfError">
-        <doc>
-          <para>
-            Failed to read the property.
-            Cause:
-          </para>
-          <list>
-            <item><code>INTERNAL</code> -
-              an internal error occurred
-            </item>
-            <item><code>DENIED</code> -
-              insufficient authorization
-            </item>
-            <item><code>NOTFOUND</code> -
-              the snapshot, property group,
-              or property doesn't exist (see
-              target)
-            </item>
-          </list>
-        </doc>
-      </error>
-      <argument type="string" name="snap_name" nullable="true">
-        <summary>
-          the name of the snapshot, or null for the running snapshot
-        </summary>
-      </argument>
-      <argument type="string" name="pg_name">
-        <summary>
-          the name of the property group
-        </summary>
-      </argument>
-      <argument type="string" name="prop_name">
-        <summary>
-          the name of the property
-        </summary>
-      </argument>
-    </method>
-
-    <method name="clear">
-      <summary>
-        clear the instance if degraded or in maintenance
-      </summary>
-      <doc>
-        Attempt to clear the maintenance or
-        degraded state from the instance.  This
-        operation occurs asynchronously, and
-        will return success even though the
-        attempt could fail.
-      </doc>
-      <error typeref="SmfError">
-        <doc>
-          <para>
-            Was unable to attempt clearing
-            the instance.  Cause:
-          </para>
-          <list>
-            <item><code>INTERNAL</code> -
-              an internal error occurred
-            </item>
-            <item><code>DENIED</code> -
-              insufficient authorization
-            </item>
-            <item><code>READONLY</code> -
-              the repository is read-only
-            </item>
-            <item><code>BADSTATE</code> -
-              the instance wasn't in the
-              maintenance or degraded state
-            </item>
-          </list>
-        </doc>
-      </error>
-      <!-- <argument type="boolean" name="synchronous" /> -->
-    </method>
-
-    <method name="restart">
-      <summary>
-        restarts the instance
-      </summary>
-      <doc>
-        Attempt to restart the instance.  This
-        operation occurs asynchronously, and
-        will return success even though the
-        attempt could fail.
-      </doc>
-      <error typeref="SmfError">
-        <doc>
-          <para>
-            Was unable to attempt
-            restarting the instance.
-            Cause:
-          </para>
-          <list>
-            <item><code>INTERNAL</code> -
-              an internal error occurred
-            </item>
-            <item><code>DENIED</code> -
-              insufficient authorization
-            </item>
-            <item><code>READONLY</code> -
-              the repository is read-only
-            </item>
-          </list>
-        </doc>
-      </error>
-      <!-- <argument type="boolean" name="synchronous" /> -->
-    </method>
-
-    <method name="refresh">
-      <summary>
-        refresh the instance
-      </summary>
-      <doc>
-        Attempt to refresh the instance.  This
-        operation occurs asynchronously, and
-        will return success even though the
-        attempt could fail.
-      </doc>
-      <error typeref="SmfError">
-        <doc>
-          <para>
-            Was unable to attempt
-            restarting the instance.
-            Cause:
-          </para>
-          <list>
-            <item><code>INTERNAL</code> -
-              an internal error occurred
-            </item>
-            <item><code>DENIED</code> -
-              insufficient authorization
-            </item>
-            <item><code>READONLY</code> -
-              the repository is read-only
-            </item>
-          </list>
-        </doc>
-      </error>
-      <!-- <argument type="boolean" name="synchronous" /> -->
-    </method>
-
-    <method name="maintain">
-      <summary>
-        place the instance in maintenance
-      </summary>
-      <doc>
-        Attempt to place the instance in
-        maintenance.  This operation occurs
-        asynchronously, and will return success
-        even though the attempt could fail.
-      </doc>
-      <error typeref="SmfError">
-        <doc>
-          <para>
-            Was unable to attempt to place
-            the instance in maintenance.
-            Cause:
-          </para>
-          <list>
-            <item><code>INTERNAL</code> -
-              an internal error occurred
-            </item>
-            <item><code>DENIED</code> -
-              insufficient authorization
-            </item>
-            <item><code>READONLY</code> -
-              the repository is read-only
-            </item>
-          </list>
-        </doc>
-      </error>
-      <argument type="boolean" name="immediate">
-        <summary>
-          skip attempting a clean shutdown
-        </summary>
-      </argument>
-      <argument type="boolean" name="temporary">
-        <summary>
-          maintenance doesn't persist after reboot
-        </summary>
-      </argument>
-      <!-- <argument type="boolean" name="synchronous" /> -->
-    </method>
-
-    <method name="enable">
-      <summary>
-        enable the instance
-      </summary>
-      <doc>
-        Enable the instance.  This operation is
-        idempotent; enabling an enabled
-        instance has no effect.
-      </doc>
-      <error typeref="SmfError">
-        <doc>
-          <para>
-            Was unable to enable the
-            instance. Cause:
-          </para>
-          <list>
-            <item><code>INTERNAL</code> -
-              an internal error occurred
-            </item>
-            <item><code>DENIED</code> -
-              insufficient authorization
-            </item>
-            <item><code>READONLY</code> -
-              the repository is read-only
-            </item>
-          </list>
-        </doc>
-      </error>
-      <argument type="boolean" name="temporary">
-        <summary>
-          enable doesn't persist after reboot
-        </summary>
-      </argument>
-      <!-- <argument type="boolean" name="synchronous" /> -->
-    </method>
-
-    <method name="disable">
-      <summary>
-        disable the instance
-      </summary>
-      <doc>
-        Disable the instance.  This operation
-        is idempotent; disabling a disabled
-        instance has no effect.
-      </doc>
-      <error typeref="SmfError">
-        <doc>
-          <para>
-            Was unable to disable the
-            instance. Cause:
-          </para>
-          <list>
-            <item><code>INTERNAL</code> -
-              an internal error occurred
-            </item>
-            <item><code>DENIED</code> -
-              insufficient authorization
-            </item>
-            <item><code>READONLY</code> -
-              the repository is read-only
-            </item>
-          </list>
-        </doc>
-      </error>
-      <argument type="boolean" name="temporary">
-        <summary>
-          disable doesn't persist after reboot
-        </summary>
-      </argument>
-      <!-- <argument type="boolean" name="synchronous" /> -->
-    </method>
-
-    <method name="getLogInfo">
-      <summary>
-        obtain instance log file data
-      </summary>
-      <doc>
-        Obtain information from and about the
-        instance's log file.  Includes the
-        name, size, modification time, and
-        contents.
-      </doc>
-      <result typeref="LogInfo">
-        <summary>
-          the requested log file data
-        </summary>
-      </result>
-      <error typeref="SmfError">
-        <doc>
-          <para>
-            Was unable to obtain log data.
-            Cause:
-          </para>
-          <list>
-            <item><code>INTERNAL</code> -
-              an internal error occurred
-            </item>
-            <item><code>DENIED</code> -
-              insufficient authorization
-            </item>
-            <item><code>NOTFOUND</code> -
-              no log file found
-            </item>
-          </list>
-        </doc>
-      </error>
-      <argument type="integer" name="max_size">
-        <summary>
-          bytes of log file content to return
-        </summary>
-      </argument>
-    </method>
-  </interface>
-
-
-  <!-- Master object definitions -->
-
-  <struct name="Service">
-    <field type="string" name="fmri" />
-    <field type="name" name="objectName" />
-    <field name="instances">
-      <list type="string" />
-    </field>
-  </struct>
-
-  <struct name="Instance">
-    <field type="string" name="fmri" />
-    <field type="name" name="objectName" />
-    <field type="time" name="stime" />
-    <field typeref="SMFState" name="state" />
-  </struct>
-
-  <struct name="StateChange">
-    <field type="name" name="source" />
-    <field typeref="SMFState" name="state" />
-    <field typeref="SMFState" name="nextState" />
-    <field type="string" name="auxState" nullable="true" />
-    <field type="time" name="stateTime" />
-    <field type="string" name="reason" nullable="true" />
-  </struct>
-
-  <struct name="Addition">
-    <field type="name" name="name" />
-    <field type="string" name="frmi" />
-    <field typeref="Instance" name="instance" nullable="true" />
-    <field typeref="Service" name="service" nullable="true" />
-  </struct>
-
-  <struct name="Removal">
-    <field type="string" name="fmri" />
-  </struct>
-
-  <interface name="Master">
-    <summary>
-      a top-level object providing access to all services and instances on
-      the system
-    </summary>
-
-    <doc>
-      <para>
-        The <code>Master</code> interface provides an iterative entrypoint into the
-        SMF subsystem.  Handles to this type of object can be retrieved from the
-        RAD server using an object name built with:
-      </para>
-
-      <list type="ordered">
-        <item>
-          the "<code>com.oracle.solaris.rad.smf</code>" domain name
-        </item>
-        <item>
-          a key named "<code>type</code>" paired with a value of
-          "<code>Master</code>"
-        </item>
-      </list>
-
-      <para>
-        For example, to report the number of services in the <link
-        enum="SMFState" value="ONLINE">ONLINE</link> state:
-      </para>
-
-      <example caption="Master interface (Python)">
-import rad.client
-import rad.util
-
-# Create a connection
-radconn = rad.util.connect_unix()
-
-# Retrieve the Master object
-master_name = rad.client.Name("<strong>com.oracle.solaris.rad.smf</strong>",
-    [("<strong>type</strong>", "<strong>Master</strong>")])
-# Get a native-looking python object that throws RAD exceptions
-master = radconn.get_object(master_name)
-
-# Retrieve a handle to the SMFState enum
-SMFState = rad.client.get_types(master).SMFState
-
-# Do something with the Master object
-print "%d service instances are online" % \
-    len([x for x in master.instances if x.state is SMFState.ONLINE])</example>
-
-      <para>
-        If using the Python SMF convenience wrapper delivered with this
-        API, this can be simplified to:
-      </para>
-
-      <example caption="Master interface (Python, SMF wrapper)">
-import smf.rad
-
-# Get quick access to the Master interface
-repo = smf.rad.Repository()
-master = repo.get_master()
-
-# Retrieve a handle to the SMFState enum
-SMFState = rad.client.get_types(master).SMFState
-
-# Do something with the master object
-print "%d service instances are online" % \
-    len([x for x in master.instances if x.state is SMFState.ONLINE])</example>
-    </doc>
-
-    <version major="1" minor="0" stability="private" />
-
-    <property name="services" access="ro">
-      <list typeref="Service" />
-      <error typeref="SmfError" />
-    </property>
-
-    <property name="instances" access="ro">
-      <list typeref="Instance" />
-      <error typeref="SmfError" />
-    </property>
-
-    <event typeref="StateChange" name="statechange" />
-    <event typeref="Addition" name="additions" />
-    <event typeref="Removal" name="removals" />
-  </interface>
-</api>
--- a/components/visual-panels/core/src/java/Makefile	Fri Jun 22 02:42:13 2012 -0400
+++ b/components/visual-panels/core/src/java/Makefile	Fri Jun 22 04:06:30 2012 -0400
@@ -24,7 +24,7 @@
 #
 
 MSUBDIRS = vpanels
-ASUBDIRS = util sleeklock smf smf-old
+ASUBDIRS = util sleeklock smf-old
 GSUBDIRS = lib
 
 lint:
--- a/components/visual-panels/core/src/java/smf/build.xml	Fri Jun 22 02:42:13 2012 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,42 +0,0 @@
-<?xml version="1.0"?>
-<!--
-  CDDL HEADER START
- 
-  The contents of this file are subject to the terms of the
-  Common Development and Distribution License (the "License").
-  You may not use this file except in compliance with the License.
- 
-  You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
-  or http://www.opensolaris.org/os/licensing.
-  See the License for the specific language governing permissions
-  and limitations under the License.
- 
-  When distributing Covered Code, include this CDDL HEADER in each
-  file and include the License file at usr/src/OPENSOLARIS.LICENSE.
-  If applicable, add the following below this CDDL HEADER, with the
-  fields enclosed by brackets "[]" replaced with your own identifying
-  information: Portions Copyright [yyyy] [name of copyright owner]
- 
-  CDDL HEADER END
-
-  Copyright (c) 2009, 2012, Oracle and/or its affiliates. All rights reserved.
--->
-
-<project name="smf" default="jar">
-	<property environment="env" />
-	<import file="${env.SRC}/ant-rules/build-common.xml" />
-
-	<target name="generate_project">
-		<generate.adr api="smf.xml" />
-	</target>
-
-	<target name="install" depends="jar,install_project,javadoc">
-		<install.default targetdir="${proto.rad.java}" />
-		<install.javadoc />
-	</target>
-
-	<path id="classpath.javac">
-		<pathelement location="${abs.rad.java}/adr.jar" />
-		<pathelement location="${abs.rad.java}/rad.jar" />
-	</path>
-</project>
--- a/components/visual-panels/core/system-management-visual-panels-core.p5m	Fri Jun 22 02:42:13 2012 -0400
+++ b/components/visual-panels/core/system-management-visual-panels-core.p5m	Fri Jun 22 04:06:30 2012 -0400
@@ -62,13 +62,6 @@
        pkg.debug.depend.type=java \
        type=require
 
-depend fmri=__TBD \
-       pkg.debug.depend.file=smf.jar \
-       pkg.debug.depend.path=usr/lib/rad/java \
-       pkg.debug.depend.reason=usr/share/vpanels/smf-old.jar \
-       pkg.debug.depend.type=java \
-       type=require
-
 depend fmri=pkg:/system/management/visual-panels-core/locale type=require
 
 dir path=usr
--- a/components/visual-panels/core/system-management-visual-panels-doc.p5m	Fri Jun 22 02:42:13 2012 -0400
+++ b/components/visual-panels/core/system-management-visual-panels-doc.p5m	Fri Jun 22 04:06:30 2012 -0400
@@ -36,7 +36,6 @@
 dir path=usr/share/lib
 dir path=usr/share/lib/java
 dir path=usr/share/lib/java/javadoc
-dir path=usr/share/lib/java/javadoc/smf
 dir path=usr/share/lib/java/javadoc/smf-old
 dir path=usr/share/lib/java/javadoc/smf-old/com
 dir path=usr/share/lib/java/javadoc/smf-old/com/oracle
@@ -49,12 +48,6 @@
 dir path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/vp/panel/common/api
 dir path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/vp/panel/common/api/smf_old
 dir path=usr/share/lib/java/javadoc/smf-old/resources
-dir path=usr/share/lib/java/javadoc/smf/com
-dir path=usr/share/lib/java/javadoc/smf/com/oracle
-dir path=usr/share/lib/java/javadoc/smf/com/oracle/solaris
-dir path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad
-dir path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf
-dir path=usr/share/lib/java/javadoc/smf/resources
 dir path=usr/share/lib/java/javadoc/vpanels-panel
 dir path=usr/share/lib/java/javadoc/vpanels-panel/com
 dir path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle
@@ -117,16 +110,19 @@
 file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/scf/common/FMRIScheme.html
 file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/scf/common/FMRIType.html
 file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/scf/common/HasFMRI.html
-file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/scf/common/ScfConstants.html
-file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/scf/common/ScfException.html
 file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/scf/common/package-frame.html
 file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/scf/common/package-summary.html
 file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/scf/common/package-tree.html
+file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/scf/common/ScfConstants.html
+file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/scf/common/ScfException.html
 file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/vp/panel/common/api/smf_old/AggregatorMXBean.html
 file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/vp/panel/common/api/smf_old/Dependency.html
 file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/vp/panel/common/api/smf_old/Instance.html
 file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/vp/panel/common/api/smf_old/LogInfo.html
 file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/vp/panel/common/api/smf_old/Manpage.html
+file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/vp/panel/common/api/smf_old/package-frame.html
+file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/vp/panel/common/api/smf_old/package-summary.html
+file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/vp/panel/common/api/smf_old/package-tree.html
 file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/vp/panel/common/api/smf_old/PropertyGroup.html
 file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/vp/panel/common/api/smf_old/PropertyType.html
 file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/vp/panel/common/api/smf_old/PropertyVisibility.html
@@ -137,9 +133,6 @@
 file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/vp/panel/common/api/smf_old/SmfState.html
 file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/vp/panel/common/api/smf_old/StateChange.html
 file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/vp/panel/common/api/smf_old/Template.html
-file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/vp/panel/common/api/smf_old/package-frame.html
-file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/vp/panel/common/api/smf_old/package-summary.html
-file path=usr/share/lib/java/javadoc/smf-old/com/oracle/solaris/vp/panel/common/api/smf_old/package-tree.html
 file path=usr/share/lib/java/javadoc/smf-old/constant-values.html
 file path=usr/share/lib/java/javadoc/smf-old/deprecated-list.html
 file path=usr/share/lib/java/javadoc/smf-old/help-doc.html
@@ -152,94 +145,36 @@
 file path=usr/share/lib/java/javadoc/smf-old/resources/inherit.gif
 file path=usr/share/lib/java/javadoc/smf-old/serialized-form.html
 file path=usr/share/lib/java/javadoc/smf-old/stylesheet.css
-file path=usr/share/lib/java/javadoc/smf/allclasses-frame.html
-file path=usr/share/lib/java/javadoc/smf/allclasses-noframe.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/Addition.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/DepGrouping.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/DepRestart.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/Dependency.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/Doclink.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/EntityMXBean.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/ErrorCode.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/ErrorTarget.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/ExtendedState.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/Instance.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/InstanceMXBean.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/LogInfo.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/Manpage.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/MasterMXBean.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/PGTemplate.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/PropChange.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/PropTemplate.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/Property.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/PropertyGroup.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/PropertyType.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/PropertyVisibility.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/Removal.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/SMFState.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/Service.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/ServiceMXBean.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/SmfError.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/StateChange.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/package-frame.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/package-summary.html
-file path=usr/share/lib/java/javadoc/smf/com/oracle/solaris/rad/smf/package-tree.html
-file path=usr/share/lib/java/javadoc/smf/constant-values.html
-file path=usr/share/lib/java/javadoc/smf/deprecated-list.html
-file path=usr/share/lib/java/javadoc/smf/help-doc.html
-file path=usr/share/lib/java/javadoc/smf/index-all.html
-file path=usr/share/lib/java/javadoc/smf/index.html
-file path=usr/share/lib/java/javadoc/smf/overview-tree.html
-file path=usr/share/lib/java/javadoc/smf/package-list
-file path=usr/share/lib/java/javadoc/smf/resources/inherit.gif
-file path=usr/share/lib/java/javadoc/smf/stylesheet.css
 file path=usr/share/lib/java/javadoc/vpanels-panel/allclasses-frame.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/allclasses-noframe.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/ClientContext.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/ConnectionAdapter.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/ConnectionEvent.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/ConnectionInfo.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/ConnectionListListener.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/ConnectionListListeners.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/ConnectionListener.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/ConnectionListeners.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/ConnectionTracker.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/LoginHistory.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/LoginInfo.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/LoginProperty.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/LoginPropertyException.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/LoginRequest.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/MXBeanTracker.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/PasswordLoginProperty.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/TrackerException.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/action/ActionAbortedException.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/action/ActionException.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/action/ActionFailedException.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/action/ActionRegressedException.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/action/ActionUnauthorizedException.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/action/DefaultStructuredAction.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/action/StructuredAction.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/action/package-frame.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/action/package-summary.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/action/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/action/StructuredAction.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/auth/AuthorizationHint.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/auth/package-frame.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/auth/package-summary.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/auth/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/auth/PrincipalHint.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/auth/PrincipalHint.PrincipalType.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/auth/PrincipalHint.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/auth/PrincipalHintList.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/auth/RoleHint.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/auth/UnauthorizedException.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/auth/UserHint.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/auth/package-frame.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/auth/package-summary.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/auth/package-tree.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/file/FileBrowserMXBean.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/file/FileBrowserUtil.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/file/FileSnapshot.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/file/RemoteFile.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/file/RemoteFileSystemView.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/file/package-frame.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/file/package-summary.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/file/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/file/RemoteFile.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/file/RemoteFileSystemView.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/network/NetworkMXBean.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/network/NetworkUtil.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/network/package-frame.html
@@ -247,27 +182,35 @@
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/network/package-tree.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/panel/CustomPanel.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/panel/MBeanUtil.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/panel/package-frame.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/panel/package-summary.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/panel/package-tree.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/panel/PanelMXBean.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/panel/PanelMXBeanTracker.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/panel/ResourceDescriptor.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/panel/package-frame.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/panel/package-summary.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/panel/package-tree.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/time/HasTimeMXBean.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/time/package-frame.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/time/package-summary.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/api/time/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/ClientContext.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/ConnectionAdapter.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/ConnectionEvent.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/ConnectionInfo.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/ConnectionListener.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/ConnectionListeners.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/ConnectionListListener.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/ConnectionListListeners.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/ConnectionTracker.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/Control.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/Control.UnsavedChangesAction.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/Control.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/DefaultControl.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/EmptyNavigationStackException.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/HasControl.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/InvalidAddressException.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/InvalidParameterException.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/MissingParameterException.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/NavRunnable.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/Navigable.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/Navigable.Util.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/Navigable.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/NavigationAbortedException.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/NavigationErrorHandler.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/NavigationException.html
@@ -278,13 +221,19 @@
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/NavigationStopEvent.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/NavigationUtil.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/Navigator.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/NavRunnable.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/package-frame.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/package-summary.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/package-tree.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/QuitControl.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/RootNavigableNotControlException.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/SimpleNavigable.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/UITransitionManager.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/package-frame.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/package-summary.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/control/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/LoginHistory.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/LoginInfo.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/LoginProperty.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/LoginPropertyException.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/LoginRequest.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/model/AbstractManagedObject.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/model/AbstractModel.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/model/AbstractPanelDescriptor.html
@@ -293,25 +242,38 @@
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/model/EmptyManagedObject.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/model/FilterManagedObject.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/model/HasPanelDescriptor.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/model/ManagedObject.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/model/ManagedObject.Util.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/model/ManagedObject.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/model/ManagedObjectMonitor.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/model/ManagedObjectStatus.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/model/Model.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/model/package-frame.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/model/package-summary.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/model/package-tree.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/model/PanelDescriptor.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/model/PropertyChangeForwarder.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/model/View.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/model/package-frame.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/model/package-summary.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/model/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/MXBeanTracker.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/package-frame.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/package-summary.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/PasswordLoginProperty.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/AggregatedRefreshService.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/BasicSmfMutableProperty.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/BooleanSmfProperty.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/ChoiceSmfProperty.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/CountSmfProperty.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/depend/DependenciesModel.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/depend/DepGroupManagedObject.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/depend/DepManagedObject.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/depend/DepNamePropInfo.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/depend/DepStatePropInfo.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/depend/DepTypePropInfo.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/depend/FileManagedObject.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/depend/package-frame.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/depend/package-summary.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/depend/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/depend/UnknownDepManagedObject.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/HasService.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/HasServiceTracker.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/HasSmfManagedObject.html
@@ -320,14 +282,17 @@
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/IntegerSmfProperty.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/InvalidScfDataException.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/MissingScfDataException.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/package-frame.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/package-summary.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/package-tree.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/PropertyGroupManagedObject.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/PropertyGroupsManagedObject.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/PropertyManagedObject.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/PropertyValuePropInfo.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/RepoManagedObject.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/ServiceManagedObject.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/ServiceMXBean.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/ServiceMXBeanAdaptor.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/ServiceManagedObject.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/ServicePanelDescriptor.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/ServiceTracker.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/ServiceUtil.html
@@ -343,27 +308,14 @@
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/SmfPropertyPropertySynchronizer.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/SmfUtil.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/StringSmfProperty.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/depend/DepGroupManagedObject.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/depend/DepManagedObject.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/depend/DepNamePropInfo.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/depend/DepStatePropInfo.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/depend/DepTypePropInfo.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/depend/DependenciesModel.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/depend/FileManagedObject.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/depend/UnknownDepManagedObject.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/depend/package-frame.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/depend/package-summary.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/depend/package-tree.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/package-frame.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/package-summary.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/smf/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/TrackerException.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/view/BusyIndicator.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/view/HasBusyIndicator.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/view/PanelIconUtil.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/view/SimpleBusyIndicator.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/view/package-frame.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/view/package-summary.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/view/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/view/PanelIconUtil.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/common/view/SimpleBusyIndicator.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/action/AddManagedObjectAction.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/action/CloneManagedObjectAction.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/action/DeleteManagedObjectAction.html
@@ -372,13 +324,13 @@
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/action/LaunchManagedObjectAction.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/action/MoveManagedObjectAction.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/action/NavigateManagedObjectAction.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/action/package-frame.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/action/package-summary.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/action/package-tree.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/action/PropertiesManagedObjectAction.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/action/SwingManagedObjectAction.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/action/SwingStructuredAction.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/action/UpdateManagedObjectAction.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/action/package-frame.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/action/package-summary.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/action/package-tree.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/ChangeIndicatorTab.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/ChildControlListSelectorControl.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/ControlManagedObject.html
@@ -388,9 +340,12 @@
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/DialogControl.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/FrameControl.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/HasTabComponent.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/ListSelectorControl.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/ListSelectorControl.NavListSelectionModel.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/ListSelectorControl.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/NavigationWindowResizer.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/package-frame.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/package-summary.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/package-tree.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/PanelFrameControl.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/SelectorControl.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/SettingsControl.html
@@ -399,24 +354,21 @@
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/SwingNavigationErrorHandler.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/SwingNavigator.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/SystemTrayControl.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/TabbedControl.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/TabbedControl.NavTabSelectionModel.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/TabbedControl.TabInsetPanel.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/TabbedControl.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/TreeSelectorControl.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/TreeSelectorControl.NavTreeSelectionModel.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/TreeSelectorControl.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/WindowControl.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/WizardControl.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/WizardStepSequence.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/WizardSummaryControl.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/package-frame.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/package-summary.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/control/package-tree.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/model/ManagedObjectPropInfo.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/model/SimpleModelControl.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/model/SwingPanelDescriptor.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/model/package-frame.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/model/package-summary.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/model/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/model/SimpleModelControl.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/model/SwingPanelDescriptor.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/smf/CheckBoxList.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/smf/CheckBoxListPropertySynchronizer.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/smf/ClearServiceAction.html
@@ -427,6 +379,9 @@
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/smf/EnableServiceAction.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/smf/NumberSpinnerList.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/smf/NumberSpinnerListPropertySynchronizer.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/smf/package-frame.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/smf/package-summary.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/smf/package-tree.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/smf/SmfDependenciesControl.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/smf/SmfDependenciesPanel.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/smf/SmfLogControl.html
@@ -437,23 +392,20 @@
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/smf/SmfStatusPanel.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/smf/TextFieldList.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/smf/TextFieldListPropertySynchronizer.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/smf/package-frame.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/smf/package-summary.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/smf/package-tree.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/timezone/LocationCriteria.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/timezone/LocationMapper.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/timezone/LocationPanel.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/timezone/LocationPicker.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/timezone/LocationPickerPropertySynchronizer.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/timezone/LocationSelectionEvent.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/timezone/LocationSelectionEvent.Type.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/timezone/LocationSelectionEvent.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/timezone/LocationSelectionListener.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/timezone/LocationSelectionListeners.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/timezone/TimeZoneModel.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/timezone/TimeZonePanel.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/timezone/package-frame.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/timezone/package-summary.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/timezone/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/timezone/TimeZoneModel.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/timezone/TimeZonePanel.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/AddressPanel.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/AuthPanel.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/ChangeIndicator.html
@@ -479,15 +431,18 @@
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/NavButtonPanel.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/ObjectsFilter.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/ObjectsHeader.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/ObjectsPanel.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/ObjectsPanel.ViewModel.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/ObjectsPanel.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/ObjectsToolBar.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/ObjectsToolBar.Separator.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/ObjectsToolBar.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/ObjectsView.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/package-frame.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/package-summary.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/package-tree.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/PanelFrame.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/ScrollingTransitionHandler.Direction.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/ScrollingTransitionHandler.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/ScrollingTransitionHandler.ImageScrollGlassPane.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/ScrollingTransitionHandler.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/SearchFilter.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/SelectorPanel.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/SimplePopupMenu.html
@@ -501,23 +456,20 @@
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/TreeTableObjectsView.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/WizardPanel.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/WizardStepPanel.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/package-frame.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/package-summary.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panel/swing/view/package-tree.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panels/time/Continent.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panels/time/ContinentImpl.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panels/time/Coordinates.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panels/time/CoordinatesImpl.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panels/time/Country.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panels/time/CountryImpl.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panels/time/package-frame.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panels/time/package-summary.html
+file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panels/time/package-tree.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panels/time/ServerInfo.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panels/time/ServerInfoImpl.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panels/time/TimeMXBean.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panels/time/TimeZoneInfo.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panels/time/TimeZoneInfoImpl.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panels/time/package-frame.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panels/time/package-summary.html
-file path=usr/share/lib/java/javadoc/vpanels-panel/com/oracle/solaris/vp/panels/time/package-tree.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/constant-values.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/deprecated-list.html
 file path=usr/share/lib/java/javadoc/vpanels-panel/help-doc.html
@@ -535,6 +487,17 @@
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/CommandLineParser.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/CommandLineProcessor.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/CommandUtil.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/exception/ConflictingOptionsException.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/exception/InvalidOptArgException.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/exception/InvalidOptionException.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/exception/MissingOptArgException.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/exception/MissingOptionException.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/exception/OptionException.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/exception/OptionUseExceededException.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/exception/package-frame.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/exception/package-summary.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/exception/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/exception/UnexpectedOptArgException.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/HelpFormatter.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/NoOptOptionElement.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/Option.html
@@ -544,80 +507,32 @@
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/OptionGroup.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/OptionListGroup.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/OptionMap.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/ParsedOption.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/PosixCommandLineParser.Pointer.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/PosixCommandLineParser.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/PosixOptionFormatter.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/UsageFormatter.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/exception/ConflictingOptionsException.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/exception/InvalidOptArgException.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/exception/InvalidOptionException.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/exception/MissingOptArgException.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/exception/MissingOptionException.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/exception/OptionException.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/exception/OptionUseExceededException.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/exception/UnexpectedOptArgException.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/exception/package-frame.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/exception/package-summary.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/exception/package-tree.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/package-frame.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/package-summary.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/ParsedOption.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/PosixCommandLineParser.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/PosixCommandLineParser.Pointer.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/PosixOptionFormatter.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/cli/UsageFormatter.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/common/propinfo/AbstractPropInfo.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/common/propinfo/PropInfo.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/common/propinfo/ReflectionPropInfo.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/common/propinfo/package-frame.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/common/propinfo/package-summary.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/common/propinfo/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/common/propinfo/PropInfo.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/common/propinfo/ReflectionPropInfo.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/AggregatingLoader.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/ArrayIterator.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/ArrayUtil.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/Base64Util.Base64Exception.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/Base64Util.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/Base64Util.WrappingWriter.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/Base64Util.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/BeanUtil.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/Changeable.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/ChangeableAggregator.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/CollectionUtil.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/ConfigReader.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/ConfigWriter.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/DTDChecker.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/DataSizeUtil.DataSize.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/DataSizeUtil.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/DebugUtil.ComponentHandler.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/DebugUtil.DumpHandler.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/DebugUtil.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/DefaultsWriter.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/DialogMessage.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/Enableable.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/EnumerationIterator.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/FileUtil.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/HasId.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/HasName.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/HistoryList.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/IOUtil.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/IconUtil.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/KeyValueWriter.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/LibraryUtil.LibraryLoader.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/LibraryUtil.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/MathUtil.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/NameValue.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/NamedThreadFactory.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/NetUtil.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/ObjectUtil.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/ProcessResult.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/ProcessUtil.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/SimpleHasId.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/StackList.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/StackUtil.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/Stackable.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/TermUtil.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/TextUtil.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/ThrowableUtil.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/TypedPropertiesWrapper.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/TypedRunnable.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/UIDebugUtil.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/XMLUtil.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/converter/BooleanStringConverter.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/converter/ByteStringConverter.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/converter/CharacterStringConverter.html
@@ -630,33 +545,44 @@
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/converter/IntegerStringConverter.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/converter/LongStringConverter.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/converter/NullConverter.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/converter/package-frame.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/converter/package-summary.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/converter/package-tree.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/converter/ShortStringConverter.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/converter/StringArrayStringConverter.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/converter/StringConverter.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/converter/StringStringConverter.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/converter/package-frame.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/converter/package-summary.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/converter/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/DataSizeUtil.DataSize.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/DataSizeUtil.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/DebugUtil.ComponentHandler.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/DebugUtil.DumpHandler.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/DebugUtil.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/DefaultsWriter.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/DialogMessage.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/DTDChecker.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/Enableable.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/EnumerationIterator.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/event/EventDispatcher.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/event/EventListeners.Entry.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/event/EventListeners.EntryIterator.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/event/EventListeners.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/event/IntervalEvent.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/event/IntervalEventQueue.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/event/IntervalEventQueue.Type.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/event/IntervalEventQueue.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/event/IntervalEventSource.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/event/IntervalListener.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/event/IntervalListeners.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/event/PropertyChangeEventSource.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/event/PropertyChangeListeners.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/event/package-frame.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/event/package-summary.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/event/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/event/PropertyChangeEventSource.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/event/PropertyChangeListeners.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/exception/CommandFailedException.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/exception/InvalidArgumentException.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/exception/package-frame.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/exception/package-summary.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/exception/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/FileUtil.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/finder/Finder.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/finder/FindingClass.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/finder/GnomeUtil.GnomeIconProvider.html
@@ -667,10 +593,23 @@
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/finder/MessageFinder.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/finder/ObjectCache.Element.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/finder/ObjectCache.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/finder/ResourceFinder.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/finder/package-frame.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/finder/package-summary.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/finder/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/finder/ResourceFinder.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/HasId.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/HasName.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/HistoryList.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/IconUtil.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/IOUtil.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/KeyValueWriter.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/LibraryUtil.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/LibraryUtil.LibraryLoader.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/MathUtil.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/NamedThreadFactory.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/NameValue.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/NetUtil.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/ObjectUtil.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/package-frame.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/package-summary.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/package-tree.html
@@ -680,12 +619,14 @@
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/predicate/NonNullPredicate.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/predicate/NullPredicate.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/predicate/OrPredicate.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/predicate/package-frame.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/predicate/package-summary.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/predicate/package-tree.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/predicate/PatternPredicate.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/predicate/Predicate.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/predicate/TruePredicate.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/predicate/package-frame.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/predicate/package-summary.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/predicate/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/ProcessResult.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/ProcessUtil.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/property/BasicMutableProperty.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/property/BooleanProperty.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/property/ByteProperty.html
@@ -696,14 +637,25 @@
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/property/LongProperty.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/property/MutableProperty.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/property/MutablePropertyUtil.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/property/package-frame.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/property/package-summary.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/property/package-tree.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/property/PropertyPropertySynchronizer.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/property/PropertySynchronizer.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/property/ShortProperty.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/property/StringArrayProperty.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/property/StringProperty.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/property/package-frame.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/property/package-summary.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/property/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/SimpleHasId.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/Stackable.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/StackList.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/StackUtil.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/TermUtil.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/TextUtil.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/ThrowableUtil.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/TypedPropertiesWrapper.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/TypedRunnable.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/UIDebugUtil.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/misc/XMLUtil.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/AbstractComponentAnimation.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/AggregateAction.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/AnchorPanel.html
@@ -730,17 +682,31 @@
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/DefaultEditableTableModel.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/DescendantEnabler.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/DialogMessagePanel.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/DisablableTabTabbedPane.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/DisablableTabTabbedPane.TabComponent.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/DisablableTabTabbedPane.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/DocumentAdapter.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/DottedBorder.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/EditableTableModel.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/EditableTablePanel.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/EditableTablePanel.Table.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/EditableTablePanel.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/EditableTableTransferHandler.EditableTableTransferable.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/EditableTableTransferHandler.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/EditableTableTransferHandler.TableData.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/EditableTableTransferHandler.TableRow.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/EditableTableTransferHandler.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/ActionListeners.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/ChangeListeners.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/ExtListSelectionEvent.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/ExtListSelectionEvent.Type.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/ExtListSelectionListener.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/ExtListSelectionListeners.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/ItemListeners.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/ListDataListeners.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/ListSelectionListeners.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/package-frame.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/package-summary.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/TableModelListeners.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/TreeModelListeners.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/ExtDialog.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/ExtFrame.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/ExtInternalFrame.html
@@ -759,32 +725,73 @@
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/FlowTextArea.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/FocusBorder.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/Form.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/glass/BlockingGlassPane.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/glass/BusyGlassPane.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/glass/ImageCaptureGlassPane.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/glass/LayeredGlassPane.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/glass/package-frame.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/glass/package-summary.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/glass/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/glass/QuickFillGlassPane.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/glass/SimpleGlassPane.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/GradientPanel.Direction.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/GradientPanel.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/GraphicsUtil.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/GUIUtil.HasMnemonic.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/GUIUtil.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/GUIUtil.MnemonicAction.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/GUIUtil.MnemonicButton.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/GUIUtil.MnemonicLabel.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/GUIUtil.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/GradientPanel.Direction.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/GradientPanel.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/GraphicsUtil.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/HasComponent.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/HasIcon.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/HasIcons.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/HeaderedCollapsiblePane.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/HintTextField.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/HorizontalScrollPane.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/HyperlinkLabel.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/HyperlinkLabel.UnderlinePolicy.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/HyperlinkLabel.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/HyperlinkPanel.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/IconPanel.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/InfoLabel.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/InsetPanel.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/AbstractLayout.ArrayBasedSizedSet.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/AbstractLayout.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/AbstractLayout.SizedSet.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/AbstractTableConstraint.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/AbstractTableLayout.CellInfo.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/AbstractTableLayout.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/AbstractTableLayout.RowOrCol.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/AbstractTableLayout.RowOrColSet.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/AbstractTableLayout.TableInfo.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/Anchor.AnchorType.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/Anchor.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/ColumnLayout.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/ColumnLayoutConstraint.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/ConstrainedLayout.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/HasAnchors.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/HorizontalAnchor.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/package-frame.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/package-summary.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/RowLayout.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/RowLayoutConstraint.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/SimpleHasAnchors.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/SimpleTableConstraint.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/SimpleViewportLayout.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/TabbedPaneOverlayLayout.Constraint.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/TabbedPaneOverlayLayout.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/TableLayout.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/UniformLayout.FillPolicy.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/UniformLayout.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/UniformLayout.Orientation.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/UniqueConstrainedLayout.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/VerticalAnchor.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/LinkCollapsiblePane.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/ListCellOverlay.Style.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/ListCellOverlay.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/ListCellOverlay.Style.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/ListDataListenerAdapter.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/ListSelectionSynchronizer.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/ListSelectionSynchronizer.IndexMapper.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/ListSelectionSynchronizer.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/ListSelectionUnifier.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/ListSelector.DragDropList.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/ListSelector.html
@@ -794,7 +801,33 @@
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/OverlayComponentFactory.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/OverlayStackPanel.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/OverlayTable.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/package-frame.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/package-summary.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/package-tree.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/PopupList.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/CheckBoxPropertySynchronizer.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/ComboBoxPropertySynchronizer.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/DefaultBoundedRangeModelPropertySynchronizer.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/EditableTablePanelPropertySynchronizer.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/ListModelPropertySynchronizer.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/ListSelectorPropertySynchronizer.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/NVComboBoxPropertySynchronizer.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/NVListSelectorPropertySynchronizer.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/package-frame.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/package-summary.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/PasswordFieldPropertySynchronizer.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/RadioButtonPropertySynchronizer.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/SpinnerNumberModelPropertySynchronizer.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/TextComponentPropertySynchronizer.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/TimeModelPropertySynchronizer.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/propinfo/AbstractSwingPropInfo.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/propinfo/EnabledPropInfo.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/propinfo/package-frame.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/propinfo/package-summary.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/propinfo/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/propinfo/SizePropInfo.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/propinfo/SwingPropInfo.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/ReplacingStackPanel.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/ResizeAnimator.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/RolloverHandler.html
@@ -805,8 +838,8 @@
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/ScaledIconPanel.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/ScrollComponentAnimation.Direction.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/ScrollComponentAnimation.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/SettingsButtonBar.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/SettingsButtonBar.SettingsButton.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/SettingsButtonBar.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/SettingsPanel.ButtonAction.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/SettingsPanel.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/SettingsToolBar.html
@@ -820,95 +853,6 @@
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/SummaryBuilder.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/ThrowableCollapsiblePane.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/ThrowableEditorPane.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/ToolTipDelayOverrider.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/UneditableToggleButtonModel.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/UnidirectionalScrollPane.Orientation.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/UnidirectionalScrollPane.ScrollablePanel.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/UnidirectionalScrollPane.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/ValidatingListSelectionModel.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/VerticalScrollPane.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/WrappingText.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/ActionListeners.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/ChangeListeners.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/ExtListSelectionEvent.Type.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/ExtListSelectionEvent.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/ExtListSelectionListener.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/ExtListSelectionListeners.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/ItemListeners.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/ListDataListeners.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/ListSelectionListeners.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/TableModelListeners.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/TreeModelListeners.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/package-frame.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/package-summary.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/event/package-tree.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/glass/BlockingGlassPane.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/glass/BusyGlassPane.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/glass/ImageCaptureGlassPane.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/glass/LayeredGlassPane.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/glass/QuickFillGlassPane.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/glass/SimpleGlassPane.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/glass/package-frame.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/glass/package-summary.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/glass/package-tree.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/AbstractLayout.ArrayBasedSizedSet.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/AbstractLayout.SizedSet.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/AbstractLayout.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/AbstractTableConstraint.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/AbstractTableLayout.CellInfo.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/AbstractTableLayout.RowOrCol.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/AbstractTableLayout.RowOrColSet.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/AbstractTableLayout.TableInfo.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/AbstractTableLayout.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/Anchor.AnchorType.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/Anchor.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/ColumnLayout.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/ColumnLayoutConstraint.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/ConstrainedLayout.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/HasAnchors.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/HorizontalAnchor.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/RowLayout.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/RowLayoutConstraint.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/SimpleHasAnchors.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/SimpleTableConstraint.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/SimpleViewportLayout.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/TabbedPaneOverlayLayout.Constraint.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/TabbedPaneOverlayLayout.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/TableLayout.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/UniformLayout.FillPolicy.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/UniformLayout.Orientation.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/UniformLayout.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/UniqueConstrainedLayout.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/VerticalAnchor.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/package-frame.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/package-summary.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/layout/package-tree.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/package-frame.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/package-summary.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/package-tree.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/CheckBoxPropertySynchronizer.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/ComboBoxPropertySynchronizer.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/DefaultBoundedRangeModelPropertySynchronizer.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/EditableTablePanelPropertySynchronizer.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/ListModelPropertySynchronizer.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/ListSelectorPropertySynchronizer.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/NVComboBoxPropertySynchronizer.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/NVListSelectorPropertySynchronizer.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/PasswordFieldPropertySynchronizer.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/RadioButtonPropertySynchronizer.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/SpinnerNumberModelPropertySynchronizer.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/TextComponentPropertySynchronizer.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/TimeModelPropertySynchronizer.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/package-frame.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/package-summary.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/property/package-tree.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/propinfo/AbstractSwingPropInfo.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/propinfo/EnabledPropInfo.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/propinfo/SizePropInfo.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/propinfo/SwingPropInfo.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/propinfo/package-frame.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/propinfo/package-summary.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/propinfo/package-tree.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/time/AnalogClock.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/time/CalendarBrowser.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/time/CalendarTable.CellRenderer.html
@@ -922,6 +866,9 @@
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/time/MillenniumTableModel.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/time/MonthTableModel.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/time/MoonIcon.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/time/package-frame.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/time/package-summary.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/time/package-tree.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/time/SimpleTimeModel.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/time/SimpleTimeSelectionModel.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/time/SquareCachedIcon.html
@@ -935,20 +882,25 @@
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/time/TimeSpinnerEditor.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/time/TimeSpinnerModel.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/time/YearTableModel.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/time/package-frame.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/time/package-summary.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/time/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/ToolTipDelayOverrider.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/tree/AbstractTreeTableModel.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/tree/NotifyingTreeNode.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/tree/package-frame.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/tree/package-summary.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/tree/package-tree.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/tree/TreeLines.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/tree/TreeTable.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/tree/TreeTable.RenderPanel.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/tree/TreeTable.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/tree/TreeTableModel.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/tree/TreeTableModelAdapter.html
 file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/tree/TypedTreeNode.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/tree/package-frame.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/tree/package-summary.html
-file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/tree/package-tree.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/UneditableToggleButtonModel.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/UnidirectionalScrollPane.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/UnidirectionalScrollPane.Orientation.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/UnidirectionalScrollPane.ScrollablePanel.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/ValidatingListSelectionModel.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/VerticalScrollPane.html
+file path=usr/share/lib/java/javadoc/vpanels-util/com/oracle/solaris/vp/util/swing/WrappingText.html
 file path=usr/share/lib/java/javadoc/vpanels-util/constant-values.html
 file path=usr/share/lib/java/javadoc/vpanels-util/deprecated-list.html
 file path=usr/share/lib/java/javadoc/vpanels-util/help-doc.html