Help:Editing
From Eclipsepedia
See the MediaWiki editing help.
For the infobox template, see Template:Infobox.
If you have to write source code in Java, you can use this template:
| Language | Source | Result |
|---|---|---|
| Java | <source lang="java">
public static void main(String args[]) {
System.out.println("Hello world");
}
</source>
| public static void main(String args[]) { System.out.println("Hello world"); } |
| XML | <source lang="xml">
<extension point="org.eclipse.stp.bpmn.diagram.EAnnotationDecorator">
<decorator
class="org.eclipse.stp.bpmn.sample.annotationdecoration.AnnotationDecorator"
source="textAnnotationSource"/>
</extension>
</source>
| <extension point="org.eclipse.stp.bpmn.diagram.EAnnotationDecorator"> <decorator class="org.eclipse.stp.bpmn.sample.annotationdecoration.AnnotationDecorator" source="textAnnotationSource"/> </extension> |

