Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Help:Editing"

Line 1: Line 1:
 
See the [http://meta.wikimedia.org/wiki/Help:Editing MediaWiki editing help].
 
See the [http://meta.wikimedia.org/wiki/Help:Editing MediaWiki editing help].
  
 +
Here is a complete list of the templates available on the Eclipse wiki, just waiting yours to add up!
  
For the infobox template, see [[Template:Infobox]].
+
{{:Special:Allpages/Template:}}
  
 
If you have to write source code in Java, you can use this template:
 
If you have to write source code in Java, you can use this template:

Revision as of 06:15, 18 September 2008

See the MediaWiki editing help.

Here is a complete list of the templates available on the Eclipse wiki, just waiting yours to add up!

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>

Back to the top