Displaying the footer note is much simpler, just one line of code.
notePane.setText(meta.getString("brief-demo-note", locale));This snippet is from tutor/meta/Brief.java
And the XML content for default locale is like this:
<brief-demo-note> <![CDATA[ <html> <font color="red" size="-2">Note:<br> *This is just an example demonstrating most features of Ableverse(tm) Meta Facility. <br> *The localized names and descriptions of Java classes and packages here are demo purpose only, they are neither part of Java(tm) technology or its documentation, nor they should be taken as reference or tip for coding in the Java(tm) Programming Language. <br><em> *Java(tm) is trade mark of SUN Microsystems, Inc. (http://www.sun.com) </em> </font> ]]> </brief-demo-note>This snippet is from tutor/meta/Brief.meta
The single meta.getString("brief-demo-note", locale)
invocation locates the above XML node with respect to the locale
passed in, and returns its whole text content.