alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>

    
<!-- ========== Extension Points ================= -->

   <!-- =============================================================================== -->
   <!-- Extension point: org.eclipse.ui.cheatsheets.cheatSheetContent                   -->
   <!-- Extension-point for contributing a cheat sheet.                                 -->
   <!--                                                                                 -->
   <!-- =============================================================================== -->
   <extension-point
      id="cheatSheetContent"
      name="%CHEAT_SHEET_CONTENT"
      schema="schema/cheatSheetContent.exsd"/>
      
   <!-- =============================================================================== -->
   <!-- Extension point: org.eclipse.ui.cheatsheets.cheatSheetItemExtension             -->
   <!-- Extension-point for contributing controls to a cheat sheet item.                -->
   <!--                                                                                 -->
   <!-- =============================================================================== -->
   <extension-point
      id="cheatSheetItemExtension"
      name="%CHEAT_SHEET_ITEM_EXTENSION"
      schema="schema/cheatSheetItemExtension.exsd"/>

<!-- ========== Extensions ================= -->

   <extension
         point="org.eclipse.ui.views">
      <category
            name="%CHEAT_SHEETS"
            id="org.eclipse.ui.cheatsheets.cheatsheetCategory">
      </category>
      <view
            name="%CHEAT_SHEETS"
            icon="icons/view16/cheatsheet_view.gif"
            category="org.eclipse.ui.cheatsheets.cheatsheetCategory"
            fastViewWidthRatio="0.5"
            class="org.eclipse.ui.internal.cheatsheets.views.CheatSheetView"
            id="org.eclipse.ui.cheatsheets.views.CheatSheetView">
      </view>
      <stickyView
      		id="org.eclipse.ui.cheatsheets.views.CheatSheetView"/>
   </extension>
   <extension
         point="org.eclipse.ui.commands">
      <command
            name="%CHEAT_SHEETS_VIEW_COMMAND_NAME"
            description="%CHEAT_SHEETS_VIEW_COMMAND_DESCRIPTION"
            categoryId="org.eclipse.ui.category.views"
            id="org.eclipse.ui.cheatsheets.views.CheatSheetView">
      </command>
     </extension>
    <extension
    	point="org.eclipse.ui.bindings">
      <key
            sequence="M2+M3+Q H"
            commandId="org.eclipse.ui.cheatsheets.views.CheatSheetView"
            schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/>      
    </extension>
    <extension
          point="org.eclipse.ui.activitySupport">
      <triggerPoint id="org.eclipse.ui.cheatsheetSelectionDialog">
         <hint
               id="interactive"
               value="true"/>
      </triggerPoint>
    </extension>
</plugin>
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.