Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Painfully Simple Form"

(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...")
(No difference)

Revision as of 18:24, 9 February 2015

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