1 /**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21 
22 package org.apache.openoffice.ooxml.schema.model.base;
23 
24 /** The location in a file consisting of file name, line number, column number
25  *  and byte index in the file.
26  */
27 public class Location
28 {
Location( final String sFilename, final int nLineNumber, final int nColumnNumber, final int nOffset)29     public Location (
30         final String sFilename,
31         final int nLineNumber,
32         final int nColumnNumber,
33         final int nOffset)
34     {
35         msFilename = sFilename;
36         mnLineNumber = nLineNumber;
37         mnColumnNumber = nColumnNumber;
38         mnOffset = nOffset;
39     }
40 
41 
42 
43 
Location()44     public Location ()
45     {
46         this("<predefined>", 0,0,0);
47     }
48 
49 
50 
51 
52     @Override
toString()53     public String toString ()
54     {
55         return String.format("%s:%d,%d/%d",
56             msFilename,
57             mnLineNumber,
58             mnColumnNumber,
59             mnOffset);
60     }
61 
62 
63 
64 
65     private final String msFilename;
66     private final int mnLineNumber;
67     private final int mnColumnNumber;
68     private final int mnOffset;
69 }
70