Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: fa90533631629438670f9caeef2b3ec3cd1feef9 (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2002-2005 IBM Corporation and others.
 * All rights reserved.   This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *   IBM - Initial API and implementation
 *******************************************************************************/
package org.eclipse.wst.wsi.internal.core.xml.dom;

import org.eclipse.wst.wsi.internal.core.WSIConstants;
import org.xml.sax.Locator;

/**
 * This class provides line and column information for a node within an XML document.
 *  
 * @version 1.0.1
 * @author Peter Brittenham  (peterbr@us.ibm.com)
 */
public class ElementLocation
{
  /**
   * Line number.
   */
  public static final String KEY_NAME = ElementLocation.class.getName();

  /**
   * Line number.
   */
  protected int lineNumber = 0;

  /**
   * Column number.
   */
  protected int columnNumber = 0;

  /**
   * Element location.
   * @param lineNumber    a line number.
   * @param columnNumber  a column number.
   */
  public ElementLocation(int lineNumber, int columnNumber)
  {
    this.lineNumber = lineNumber;
    this.columnNumber = columnNumber;
  }

  /**
   * Element location.
   * @param locator  a Locator object.
   */
  public ElementLocation(Locator locator)
  {
    this.lineNumber = locator.getLineNumber();
    this.columnNumber = locator.getColumnNumber();
  }

  /**
   * Get the line number.
   * @return an int representing the line number value.
   */
  public int getLineNumber()
  {
    return this.lineNumber;
  }

  /**
   * Get the column number.
   * @return an int representing the column number value.
   */
  public int getColumnNumber()
  {
    return this.columnNumber;
  }

  /**
   * Get string representation of this object.
   */
  public String toString()
  {
    return "Element Location:\n"
      + "  "
      + WSIConstants.ATTR_LINE_NUMBER
      + "="
      + this.lineNumber
      + "\n";
    //+ "  " + WSIConstants.ATTR_COLUMN_NUMBER + "=" + this.columnNumber + "\n";
  }
}

Back to the top