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

Painfully Simple Form

Revision as of 18:24, 9 February 2015 by Paul.roubekas.org (Talk | contribs) (Created page with "A Painfully Simple Form in ICE is a Form that was created by parsing Entries and DataComponents from a file written in the Painfully Simple Form File Format == '''The Painfu...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

A Painfully Simple Form in ICE is a Form that was created by parsing Entries and DataComponents from a file written in the Painfully Simple Form File Format

The Painfully Simple Form File Format

The Painfully Simple Form file format (PSF) was designed to be overly simple for developers who are hooking their codes to ICE and painfully simple to parse. It is mostly the same as an ini file or a Java properties file, but with small differences that make it specific to ICE.

Comments

Any text after a "#" or "//" will be ignored by the parser whether it is a line of text commenting on a section or comments after a statement.

#Ignored text above a block
group=My Group //Ignored text after a statement
groupDescription=My Group #More ignored text

Back to the top