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 "EDT:Code snippets"

(add record def)
 
(118 intermediate revisions by 5 users not shown)
Line 1: Line 1:
== Code snippets for EDT ==
+
* [[EDT:Declaring data|Declaring values of EGL native types]]
  
Real code for real people. Share your code snippets with others! <br>
+
* [[EDT:Working with custom types|Working with custom types]]
  
== <br>Rich UI<br>  ==
+
* [[EDT:Writing statements|Writing statements]]
  
== <br>Services<br>  ==
+
* [[EDT:Working with a database|Working with a database]]
  
== <br>Database access  ==
+
* [[EDT:Accessing a service|Accessing a service]]
  
Record definition<br>
+
* [[EDT:Writing a Rich UI application|Writing a Rich UI application]]
  
<source lang="java">
+
<br><br>
record CUSTOMER type Entity{@table{name = "CUSTOMER"}}
+
    NAME string
+
    COUNTRY string{@id};
+
    STATE string?;
+
    ID string;
+
end
+
</source>  
+
  
<br>
+
To share a code snippet:
 +
 
 +
*On the page of interest, click '''Edit''' and, if necessary, log in to eclipse.org.
 +
*Add a section or update an existing one; but always include your code in the following wikitext markup:<br>
 +
<pre>        &lt;source lang="java"&gt;
 +
          // put code here
 +
        &lt;/source&gt;
 +
 +
</pre>
 +
*The &lt;source&gt; tag is used instead of &lt;code&gt; or &lt;pre&gt; since it provides syntax highlighting similar to an advanced source code editor. We use the Java language highlighting, since a highlighter for EGL doesn't exist (yet). If you are interested in writing a syntax highlighter for EGL, the GeSHi (Generic Syntax Highlighter) extension is used.
 +
* For longer examples, consider adding line numbers using line="GESHI_NORMAL_LINE_NUMBERS" in the source tag, though for some reason then the snippet doesn't appear in a colored background.
 +
*To add most of your content, click Wikitext or disable the Rich Editor.
 +
*Before you create a new page, read [[EDT:How to Create/Edit Wiki pages|these instructions]].
 +
 
 +
For help with editing, see [http://meta.wikimedia.org/wiki/Help:Wikitext_examples Wikitext examples]. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
 +
 
 +
[[Category:EDT]]

Latest revision as of 15:15, 6 March 2012



To share a code snippet:

  • On the page of interest, click Edit and, if necessary, log in to eclipse.org.
  • Add a section or update an existing one; but always include your code in the following wikitext markup:
        <source lang="java">
          // put code here 
        </source>
 
  • The <source> tag is used instead of <code> or <pre> since it provides syntax highlighting similar to an advanced source code editor. We use the Java language highlighting, since a highlighter for EGL doesn't exist (yet). If you are interested in writing a syntax highlighter for EGL, the GeSHi (Generic Syntax Highlighter) extension is used.
  • For longer examples, consider adding line numbers using line="GESHI_NORMAL_LINE_NUMBERS" in the source tag, though for some reason then the snippet doesn't appear in a colored background.
  • To add most of your content, click Wikitext or disable the Rich Editor.
  • Before you create a new page, read these instructions.

For help with editing, see Wikitext examples.       

Back to the top