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.2"?>
<plugin>
<extension
         point="org.eclipse.ui.commands">
      <command
            categoryId="org.eclipse.sound.category"
            defaultHandler="org.eclipse.sound.ui.PlaySoundHandler"
            description="%command.play.description"
            id="org.eclipse.sound.playSound"
            name="%command.play.name">
         <commandParameter
               id="org.eclipse.sound.id"
               name="%command.play.parameter.name"
               optional="false"
               values="org.eclipse.sound.ui.internal.SoundExtensionValues">
         </commandParameter>
      </command>
      <category
            description="%category.sound.description"
            id="org.eclipse.sound.category"
            name="%category.sound.name">
      </category>
   </extension>
<extension
      point="org.eclipse.ui.startup">
   <startup>
   </startup>
</extension>
<extension
      point="org.eclipse.sound.sounds">
   <sound
         file="sounds/noerrors.wav"
         id="org.eclipse.sound.ui.noErrors"
         name="%sound.name.noMoreErrors">
   </sound>
   <sound
         file="sounds/newerror.wav"
         id="org.eclipse.sound.ui.newErrors"
         name="%sound.name.newErrors">
   </sound>
   <sound
         file="sounds/failure.wav"
         id="org.eclipse.sound.ui.jobFailure"
         name="%sound.name.jobFailed">
   </sound>
   <sound
         file="sounds/success.wav"
         id="org.eclipse.sound.ui.jobSuccess"
         name="%sound.name.jobSuccess">
   </sound>
</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.