summaryrefslogtreecommitdiff
path: root/l10ntools/java/jpropex/java/SdfEntity.java
blob: 52dc61ca40cafca0d06fc8ce497850334b55afc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
/*************************************************************************
 *
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * Copyright 2000, 2010 Oracle and/or its affiliates.
 *
 * OpenOffice.org - a multi-platform office productivity suite
 *
 * This file is part of OpenOffice.org.
 *
 * OpenOffice.org is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3
 * only, as published by the Free Software Foundation.
 *
 * OpenOffice.org is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License version 3 for more details
 * (a copy is included in the LICENSE file that accompanied this code).
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with OpenOffice.org.  If not, see
 * <http://www.openoffice.org/license.html>
 * for a copy of the LGPLv3 License.
 *
 ************************************************************************/


public class SdfEntity implements Cloneable{
    private String project      = new String("");
    private String source_file  = new String("");
    private String dummy1       = new String("");
    private String resource_type= new String("");
    private String gid          = new String("");
    private String lid          = new String("");
    private String helpid       = new String("");
    private String platform     = new String("");
    private String dummy2       = new String("");
    private String langid       = new String("");
    private String text         = new String("");
    private String helptext     = new String("");
    private String quickhelptext= new String("");
    private String title        = new String("");
    private String date         = new String("");

    public static int PROJECT_POS       = 0;
    public static int SOURCE_FILE_POS   = 1;
    public static int DUMMY1_POS        = 2;
    public static int RESOURCE_TYPE_POS = 3;
    public static int GID_POS           = 4;
    public static int LID_POS           = 5;
    public static int HELPID_POS        = 6;
    public static int PLATFORM_POS      = 7;
    public static int DUMMY2_POS        = 8;
    public static int LANGID_POS        = 9;
    public static int TEXT_POS          = 10;
    public static int HELPTEXT_POS      = 11;
    public static int QUICKHELPTEXT_POS = 12;
    public static int TITLE_POS         = 13;
    public static int DATE_POS          = 14;

    public Object clone()
    {
        try
        {
            return super.clone();
        }
        catch( CloneNotSupportedException e )
        {
            System.out.println("ERROR: Can not clone, something is broken here ....");
            System.exit( -1 );
        }
        return null; // dummy
    }

    public SdfEntity( String line ){
        // isValid?
        setProperties( line ) ;
    }
    public SdfEntity(String project, String source_file, String dummy1, String resource_type, String gid, String lid, String helpid, String platform, String dummy2, String langid, String text, String helptext, String quickhelptext, String title , String date) {
        super();
        this.project        = project;
        this.source_file    = source_file;
        this.dummy1         = dummy1;
        this.resource_type  = resource_type;
        this.gid            = gid;
        this.lid            = lid;
        this.helpid         = helpid;
        this.platform       = platform;
        this.dummy2         = dummy2;
        this.langid         = langid;
        this.text           = text;
        this.helptext       = helptext;
        this.quickhelptext  = quickhelptext;
        this.title          = title;
        this.date           = date;
    }

    public void setProperties( String line ){

        String[] splitted       = line.split("\t");

        setProject(         splitted[ SdfEntity.PROJECT_POS ]       );
        setSource_file(     splitted[ SdfEntity.SOURCE_FILE_POS ]   );
        setDummy1(          splitted[ SdfEntity.DUMMY1_POS ]        );
        setResource_type(   splitted[ SdfEntity.RESOURCE_TYPE_POS ] );
        setGid(             splitted[ SdfEntity.GID_POS ]           );
        setLid(             splitted[ SdfEntity.LID_POS ]           );
        setHelpid(          splitted[ SdfEntity.HELPID_POS ]        );
        setPlatform(        splitted[ SdfEntity.PLATFORM_POS ]      );
        setDummy2(          splitted[ SdfEntity.DUMMY2_POS ]        );
        setLangid(          splitted[ SdfEntity.LANGID_POS ]        );
        setText(            splitted[ SdfEntity.TEXT_POS ]          );
        setHelptext(        splitted[ SdfEntity.HELPTEXT_POS ]      );
        setQuickhelptext(   splitted[ SdfEntity.QUICKHELPTEXT_POS ] );
        setTitle(           splitted[ SdfEntity.TITLE_POS ]         );
        setDate(            splitted[ SdfEntity.DATE_POS ]          );
    }

    public String getFileId(){
        return project+"\\"+source_file;
    }
    public String getResourcePath(){
        return source_file.substring(0 , source_file.lastIndexOf( "\\" )-1 );
    }
    public String toString(){
        return new StringBuffer( project ).append( "\t" ).append( source_file ).append( "\t" ).append( dummy1 ).append( "\t" ).append( resource_type ).append( "\t" ).append( gid ).append( "\t" )
               .append( lid ).append( "\t" ).append( helpid ).append( "\t" ).append( platform ).append( "\t" ).append( dummy2 ).append( "\t" ).append( langid ).append( "\t" )
               .append( text ).append( "\t" ).append( helptext ).append( "\t" ).append( quickhelptext ).append( "\t" ).append( title ).append( "\t" ).append( date ).toString();
    }
    public String getId(){
        return new StringBuffer( project ).append( gid ).append( lid ).append( source_file ).append( resource_type ).append( platform ).append( helpid ).append( langid ).toString();
    }

    public String getDummy1() {
        return dummy1;
    }

    public void setDummy1(String dummy1) {
        this.dummy1 = dummy1;
    }

    public String getPlatform() {
        return platform;
    }

    public void setPlatform(String platform) {
        this.platform = platform;
    }

    public String getDummy2() {
        return dummy2;
    }

    public void setDummy2(String dummy2) {
        this.dummy2 = dummy2;
    }

    public String getGid() {
        return gid;
    }

    public void setGid(String gid) {
        this.gid = gid;
    }

    public String getHelpid() {
        return helpid;
    }

    public void setHelpid(String helpid) {
        this.helpid = helpid;
    }

    public String getHelptext() {
        return helptext;
    }

    public void setHelptext(String helptext) {
        this.helptext = helptext;
    }

    public String getLangid() {
        return langid;
    }

    public void setLangid(String langid) {
        this.langid = langid;
    }

    public String getLid() {
        return lid;
    }

    public void setLid(String lid) {
        this.lid = lid;
    }

    public String getProject() {
        return project;
    }

    public void setProject(String project) {
        this.project = project;
    }

    public String getQuickhelptext() {
        return quickhelptext;
    }

    public void setQuickhelptext(String quickhelptext) {
        this.quickhelptext = quickhelptext;
    }

    public String getResource_type() {
        return resource_type;
    }

    public void setResource_type(String resource_type) {
        this.resource_type = resource_type;
    }

    public String getSource_file() {
        return source_file;
    }

    public void setSource_file(String source_file) {
        this.source_file = source_file;
    }

    public String getText() {
        return text;
    }

    public void setText(String text) {
        this.text = text;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }
    public String getDate() {
        return date;
    }
    public void setDate(String date) {
        this.date = date;
    }


}