• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

.settings/22-Nov-2023-9998

META-INF/22-Nov-2023-2019

.classpathD22-Nov-2023259 76

.projectD22-Nov-2023651 2928

MODULE_LICENSE_EPLD22-Nov-20230

NOTICED22-Nov-202311 KiB222179

README.txtD22-Nov-2023764 1513

build.propertiesD22-Nov-202398 54

plugin.xmlD22-Nov-2023360 1110

pom.xmlD22-Nov-2023677 1815

README.txt

1This plugin provides a minor extension to the ADT plugin to support
2XML formatting via the "Source > Format" action on files.
3
4The reason the plugin package name starts with the word "overlay"
5instead of the normal "com.android.eclipse" package is that the plugin
6name *must* be alphabetically later than "org.eclipse". The reasons
7for this is detailed in issue
8   http://code.google.com/p/android/issues/detail?id=20450
9but essentially the plugin registration to override the
10formatProcessor is processed in the alphabetical order of the plugin
11names, so the org.eclipse plugin would clobber the com.android.eclipse
12plugin. To work around this, the specific registration code was moved
13out to a separate plugin, but the formatter itself continues to live
14in ADT.
15