Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[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;
        }


Back to the top