schema.javaFormatter.exsd Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.eclipse.jdt.core
Show all versions of org.eclipse.jdt.core
This is org.eclipse.jdt.core jar used by Tycho
This extension point allows clients to supply their own Java source code formatter.
The formatter is expected to use the default formatter's options.
A unique identifier used to reference this Java formatter.
The name of this Java formatter, used to present this formatter in the UI.
The fully-qualified name of the Java class that extends the org.eclipse.jdt.core.formatter.CodeFormatter abstract class.
3.11
Example of a declaration of a <code>javaFormatter</code>:
<pre>
<extension point="org.eclipse.jdt.core.javaFormatter">
<javaFormatter
class="myformatter.MyFormatter"
id="myformatter.javaFormatter"
name="My Custom Formatter">
</javaFormatter>
</extension>
</pre>
Copyright (c) 2014 Google Inc. and others.<br>
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>