Some definitions:
The drawing-buffer-coordinate of a Field is the coordinate of the pixel in the column of the most western pixel and the row of the most northern pixel of the Field.
An absolute paint-coordinate is a coordinate relative to the viewportPosition (0,0). NOTE that no negative x or y-values are allowed for such a coordinate!!!
(Really?) An unscrolled array-coordinate is an array-coordinate that is not necessarily within map.
Properties
class represents a persistent set of properties. Each key and its corresponding value in the property list is a string.
The {@link #loadFromXML(InputStream)} and {@link #storeToXML(OutputStream,String,String)} methods load and store propertiesin a simple XML format. By default the UTF-8 character encoding is used, however a specific encoding may be specified if required. An XML properties document has the following DOCTYPE declaration:
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">Note that the system URI (http://java.sun.com/dtd/properties.dtd) is not accessed when exporting or importing properties; it merely serves as a string to uniquely identify the DTD, which is:
<?xml version="1.0" encoding="UTF-8"?> <!-- DTD for properties --> <!ELEMENT properties ( comment?, entry* ) > <!ATTLIST properties version CDATA #FIXED "1.0"> <!ELEMENT comment (#PCDATA) > <!ELEMENT entry (#PCDATA) > <!ATTLIST entry key CDATA #REQUIRED>@see native2ascii tool for Solaris @see native2ascii tool for Windows
This class is thread-safe: multiple threads can share a single Properties object without the need for external synchronization. @author Arthur van Hoff @author Michael McCloskey @author Xueming Shen @since JDK1.0
load()
and store
methods.
@author Steffen Rusitschka - Siemens AG
@author Marc Schlichte - Siemens AG
@author Nicolas Lhuillier - Motorola
@author Giovanni Caire - TILAB
The {@link #loadFromXML(InputStream)} and {@link #storeToXML(OutputStream,String,String)} methods load and store propertiesin a simple XML format. By default the UTF-8 character encoding is used, however a specific encoding may be specified if required. An XML properties document has the following DOCTYPE declaration:
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">Note that the system URI (http://java.sun.com/dtd/properties.dtd) is not accessed when exporting or importing properties; it merely serves as a string to uniquely identify the DTD, which is:
<?xml version="1.0" encoding="UTF-8"?> <!-- DTD for properties --> <!ELEMENT properties ( comment?, entry* ) > <!ATTLIST properties version CDATA #FIXED "1.0"> <!ELEMENT comment (#PCDATA) > <!ELEMENT entry (#PCDATA) > <!ATTLIST entry key CDATA #REQUIRED>@see native2ascii tool for Solaris @see native2ascii tool for Windows
This class is thread-safe: multiple threads can share a single Properties object without the need for external synchronization. @author Arthur van Hoff @author Michael McCloskey @author Xueming Shen @version 1.96, 08/07/06 @since JDK1.0
Properties
class is used for storing application properties. This is greatly influenced by the java.util.Properties
class found in Java SE. However it is created from scratch to make it as small and fast as possible for use in a Java ME environment.
@author Johan Karlsson (johan.karlsson@jayway.se)
@since 0.1
Enhancement of the standard Properties
managing the maintain of comments, etc.
Enhancement of the standard Properties
managing the maintain of comments, etc.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|