This extension point is used by plugins to contribute built-in XML files to provide XML-defined components. The files will not be writeable, but they can be copied and modified locally in the workspace by a user. a fully qualified identifier of the target extension point an optional identifier of the extension instance an optional name of the extension instance The path to the XML file containing the XML-defined components. 1.0 <p> The xml file path is relative to the plugin's root directory. Here is an example where a plugin adds an XML file name 'test_builtin.xml' located in the 'test_xml_files' directory. </p> <extension point="org.eclipse.linuxtools.tmf.analysis.xml.core.files"> <xmlfile file="test_xml_files/test_builtin.xml"> </xmlfile> </extension> <p> The XML file advertised by this extension point should validate with the XML plugin's XSD files, or otherwise, it will be ignored. To validate it with the XSD, it can be imported in a project from a running TMF before adding it to an extension point. Any error will be reported. </p> Copyright (c) 2014 École Polytechnique de Montréal 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 <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>