Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.file / org.gvsig.fmap.dal.file.gml / src / main / resources / org / gvsig / fmap / dal / store / gml / GMLParameters.xml @ 47669

History | View | Annotate | Download (4.4 KB)

1
<?xml version= "1.0 "?>
2
<definitions>
3
    <version>1.0.0</version>
4
    <classes>
5
        <class name="GMLStoreParameters">
6
            <extends>
7
                <class namespace="dal" name="ProviderParameters"/>
8
            </extends>
9
            <tags>
10
                <value name="defaultGroup" value="Basic"/>
11
            </tags>      
12
            <description>_GML_loading_parameters</description>
13
            <fields>
14
                <field name="File" type="file" mandatory="true" group="Basic">
15
                    <description>GML file</description>
16
                </field>
17
                <field name="locale" type="string" mandatory="true" defaultValue="DEFAULT" group="Basic">
18
                    <description>Locale used to parse double and float values (BCP47 language tag representing the locale)</description>
19
                    <availableValues>
20
                        <value label="Default (use system locale)">DEFAULT</value>
21
                        <value label="Canada (english)">en-CA</value>
22
                        <value label="Canada (french)">fr-CA</value>
23
                        <value label="Chinese">zh</value>
24
                        <value label="English">en</value>
25
                        <value label="French">fr</value>
26
                        <value label="German">de</value>
27
                        <value label="Italian">it</value>
28
                        <value label="Japanese">ja</value>
29
                        <value label="Korea">ko</value>
30
                        <value label="Spain">es</value>
31
                        <value label="Uk">en-GB</value>
32
                        <value label="Us">en-US</value>
33
                    </availableValues>          
34
                </field>
35
                <field name="charset" label="_Charset" type="string" mandatory="false" group="Basic">
36
                    <description>Sets the charset to use.</description>
37
                </field>
38
                <field name="automaticTypesDetection" label="_Automatic_type_detection" type="boolean" mandatory="false" defaultValue="true" group="Basic">
39
                    <description>This flag activate the autodetection of types in the GML. Can be slow.</description>
40
                </field>
41
                <field name="header" type="string" mandatory="false" defaultValue="" group="Advanced">
42
                    <description>The header or empty if parsed automatically</description>
43
                </field>
44
                <field name="fieldsDefinition" label="Fields definition" type="string" mandatory="false" defaultValue="" group="Advanced">
45
                    <description>If set use this to define fields of fixed length instead of use a separator.\nThe format is a list of values separateds by spaces of the form N:M\nwhere N is the position of the first character of field, and M the last.\nCan accept N: to use form the N character to the end of line.</description>
46
                </field>
47
                <field name="CRS" type="crs" mandatory="false" group="Geometry" order="10">
48
                    <description>The coordinate reference system used in this GML file if contains geometries</description>
49
                </field>
50
                <field name="fieldtypes" type="string" mandatory="false" defaultValue="" group="Advanced">
51
                    <description>Comma separated list of field types. If empty strings are assumed (Eg: integer,string,double,boolean,float,geometry).</description>
52
                </field>
53
                <field name="ignoreErrors" label="_Ignore_errors" type="boolean" mandatory="false" defaultValue="false" group="Basic">
54
                    <description>Set to true to ignore errors during load of data.</description>
55
                </field>
56
                <field name="limit" type="integer" mandatory="false" defaultValue="-1" group="Advanced">
57
                    <description>Limit the number of record to load of GML file.</description>
58
                </field>
59
                <field name="geometryCombineMode" label="_Geometry_combine_mode" type="integer" mandatory="false" defaultValue="0" group="Geometry">
60
                    <description>Combine mode for geometries</description>
61
                    <availableValues>
62
                        <value label="None">0</value>
63
                        <value label="Use first not null geometry field">1</value>
64
                    </availableValues>          
65
                </field>
66
            </fields>
67
        </class>
68
    </classes>
69
</definitions>