Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

Eclipse Plug-in Developer Guide
Previous Page Home Next Page

Property Tabs

Identifier:
org.eclipse.ui.views.properties.tabbed.propertyTabs

Description:
Describes a list of tabs that will be contributed to the tabbed property sheet page.

Configuration Markup:

<!ELEMENT extension ( propertyTabs)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED

>

  • point - a fully qualified identifier of the target extension point
  • id - an optional identifier of the extension instance
  • name - an optional name of the extension instance

<!ELEMENT propertyTabs ( propertyTab+)>

<!ATTLIST propertyTabs

contributorId CDATA #REQUIRED

>

  • contributorId - The unique identifier of the property sheet page contributor.

<!ELEMENT propertyTab EMPTY>

<!ATTLIST propertyTab

label    CDATA #REQUIRED

category CDATA #REQUIRED

afterTab CDATA #IMPLIED

id       CDATA #REQUIRED

indented (true | false)

image    CDATA #IMPLIED

>

  • label - The label to be displayed on the tab.
  • category - The category used to group tabs.
  • afterTab - When there is more than one tab in a category, tabs are sorted by the afterTab attribute.
  • id - The unique id for the tab.
  • indented - If true, then this tab is idented. This is meant to indicate subtabs or categories of the parent tab.
  • image - If an image is provided, the icon image is displayed on the tab when the tab is active.

Examples:

   <extension
         point=
"org.eclipse.ui.views.properties.tabbed.propertyTabs"
>
      <propertyTabs contributorId=
"org.eclipse.ui.tests.views.properties.tabbed.views.TestsView"
>
         <propertyTab
               category=
"first"

               id=
"propertyTab1"

               label=
"Name"
>
         </propertyTab>
         <propertyTab
               afterTab=
"propertyTab1"

               category=
"first"

               id=
"propertyTab2"

               label=
"Project"
>
         </propertyTab>
         <propertyTab
               category=
"second"

               id=
"propertyTab8"

               label=
"Message"
>
         </propertyTab>
      </propertyTabs>
   </extension>


Copyright (c) 2005, 2008 IBM Corporation and others.
All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-v10.html


 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire