Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-doc-dev] Accessibility problems in javadoc


The "<input>" tag has been fixed in AntRunner, and the schema tags have been updated in the debug ui plug-in XML (in case of a re-build).

Darin




Jim des Rivieres/Ottawa/IBM@IBMCA
Sent by: platform-doc-dev-admin@xxxxxxxxxxx

03/27/2003 04:20 PM
Please respond to platform-doc-dev

       
        To:        platform-doc-dev@xxxxxxxxxxx
        cc:        
        Subject:        Re: [platform-doc-dev] Accessibility problems in javadoc



The debug UI plug-in manifest is missing "schema" attributes for the AWOL
extension points.

<!-- Extension points -->
  <extension-point id="consoleColorProviders"
name="%ConsoleColorProvidersExtensionName"/>
  <extension-point id="consoleLineTrackers"
name="%ConsoleLineTrackersExtensionName"/>
  <extension-point id="debugActionGroups"
name="%DebugActionGroupsExtensionName"
schema="schema/debugActionGroups.exsd"/>
  <extension-point id="debugModelPresentations"
name="%DebugModelPresentationExtensionName"
schema="schema/debugModelPresentations.exsd"/>
  <extension-point id="launchConfigurationTabGroups"
name="%LaunchConfigurationTabGroupExtensionName"
schema="schema/launchConfigurationTabGroups.exsd"/>
  <extension-point id="launchConfigurationTypeImages"
name="%LaunchConfigurationTypeImageExtensionName"
schema="schema/launchConfigurationTypeImages.exsd"/>
  <extension-point id="launchGroups" name="%LaunchGroupsExtensionName"/>
  <extension-point id="launchShortcuts" name="%LaunchShortcutsName"
schema="schema/launchShortcuts.exsd"/>


----- Forwarded by Jim des Rivieres/Ottawa/IBM on 03/27/2003 05:19 PM
-----


Jim des Rivieres
03/27/2003 05:09 PM


       To:     platform-doc-dev@xxxxxxxxxxx
       cc:
       From:   Jim des Rivieres/Ottawa/IBM@IBMCA
       Subject:        Re: [platform-doc-dev] Accessibility problems in javadoc


The line in the Javadoc comment for org.eclipse.ant.core.AntRunner should
be changed to
        * input handler will be used to respond to &lt;input&gt; requests





Tod Creasey/Ottawa/IBM@IBMCA
Sent by: platform-doc-dev-admin@xxxxxxxxxxx
03/27/2003 05:04 PM
Please respond to platform-doc-dev


       To:     platform-doc-dev@xxxxxxxxxxx
       cc:
       Subject:        [platform-doc-dev] Accessibility problems in javadoc



In  org.eclipse.ant.core.AntRunner - the <input> is a proper html tag

/**
        * Sets the input handler. The parameter <code>className</code>
        * is the class name of a
<code>org.apache.tools.ant.input.InputHandler</code>
        * implementation. The class will be instantiated at runtime and
the

         * input handler will be used to respond to <input> requests
        * Only one input handler is permitted for any build.
        *
        * @param className an input handler class name
        * @since 2.1
        */
       public void setInputHandler(String className) {
               inputHandlerClassName= className;
       }
_______________________________________________
platform-doc-dev mailing list
platform-doc-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/platform-doc-dev




_______________________________________________
platform-doc-dev mailing list
platform-doc-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/platform-doc-dev



Back to the top