All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class org.xmlmiddleware.xmldbms.tools.GeneratePropFile

java.lang.Object
   |
   +----org.xmlmiddleware.xmldbms.tools.PropertyProcessor
           |
           +----org.xmlmiddleware.xmldbms.tools.GeneratePropFile

public class GeneratePropFile
extends PropertyProcessor
Utility for generating Java properties files.

GeneratePropFile provides a command line utility for generating Java properties files from a set of property/value pairs. The command line syntax is:

 java GeneratePropFile <property file name> <property>=<value> [<property>=<value>...]
 

If any property/value pairs contain spaces, they must be enclosed in double quotes. For example:

 java GeneratePropFile MyPropFile.props "MapFile=My Map File.map"
 

Property/value pairs are read in order. If a property is listed more than once, the last value is used.

Version:
2.0
Author:
Adam Flinton, Ronald Bourret

Constructor Index

 o GeneratePropFile()
Construct a GeneratePropFile object.

Method Index

 o main(String[])
Run GeneratePropFile from a command line.

Constructors

 o GeneratePropFile
 public GeneratePropFile()
Construct a GeneratePropFile object.

Methods

 o main
 public static void main(String args[])
Run GeneratePropFile from a command line.

See the introduction for the command line syntax.

Parameters:
args - Property/value pairs.

All Packages  Class Hierarchy  This Package  Previous  Next  Index