Packagecom.vmware.vsphere.client.views
Classpublic class GlobalViewSpec
InheritanceGlobalViewSpec Inheritance ViewSpec Inheritance ComponentSpec Inheritance Object

Contains the information for a vSphere Client global view.

Specification class for vise.global.views extension point.

View the examples



Public Properties
 PropertyDefined By
  applyDefaultChrome : Boolean = true
Applies the default chrome to the global view.
GlobalViewSpec
 InheritedcategoryUid : String
Optional view category unique id.
ViewSpec
 InheritedcomponentClass : ObjectSpec
The class info of the referenced component.
ComponentSpec
 Inheritedicon : Class
Optional view icon.
ViewSpec
 Inheritedname : String
The views's user-visible name.
ViewSpec
 Inheriteduid : String
Unique ID, usually a namespace-style string.
ComponentSpec
Property Detail
applyDefaultChromeproperty
public var applyDefaultChrome:Boolean = true

Applies the default chrome to the global view.

The chrome has rounded edges, has a header that contains the icon and name of the GlobalView and an empty footer.

The default value is true..

Examples
Here is an example of a global view extension in plugin.xml.
 
 <extension id="sample.globalView">
    <extendedPoint>vise.global.views</extendedPoint>
    <object>
       <name>Sample Global View</name>
       <componentClass className="samples.SampleGlobalView"/>
    </object>
 </extension>