forked from eclipse-lemminx/lemminx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added document links for xsi:schemaLocation
Every second token for the value of xsi:schemaLocation is turned into a document link to the referenced schema file. Closes eclipse-lemminx#666 Signed-off-by: David Thompson <[email protected]>
- Loading branch information
Showing
3 changed files
with
125 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
70 changes: 70 additions & 0 deletions
70
org.eclipse.lemminx/src/main/java/org/eclipse/lemminx/dom/SchemaLocationHint.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
/** | ||
* Copyright (c) 2018 Red Hat Inc. | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License v2.0 | ||
* which accompanies this distribution, and is available at | ||
* http://www.eclipse.org/legal/epl-v20.html | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
* | ||
* Contributors: | ||
* Red Hat Inc. - initial API and implementation | ||
*/ | ||
package org.eclipse.lemminx.dom; | ||
|
||
/** | ||
* Represents one of the location hints provided in an xsi:schemaLocation attribute. | ||
*/ | ||
public class SchemaLocationHint implements DOMRange { | ||
|
||
private final int start, end; | ||
|
||
private final String hint; | ||
|
||
private final SchemaLocation parent; | ||
|
||
/** | ||
* | ||
* @param start The offset from the beginning of the document where this location hint starts | ||
* @param end The offset from the beginning of the document where this location hint ends | ||
* @param hint The hint to the location of a schema (A URI that points to a schema) | ||
* @param parent The SchemaLocation in which this hint was given | ||
*/ | ||
public SchemaLocationHint(int start, int end, String hint, SchemaLocation parent) { | ||
this.start = start; | ||
this.end = end; | ||
this.hint = hint; | ||
this.parent = parent; | ||
} | ||
|
||
/** | ||
* Get the location hint that this SchemaLocationHint represents | ||
* | ||
* @return The location hint, a URI to a schema, as a String | ||
*/ | ||
public String getHint() { | ||
return this.hint; | ||
} | ||
|
||
/** | ||
* @return The offset from the beginning of the document where this location hint starts | ||
*/ | ||
@Override | ||
public int getStart() { | ||
return this.start; | ||
} | ||
|
||
/** | ||
* @return The offset from the beginning of the document where this location hint ends | ||
*/ | ||
@Override | ||
public int getEnd() { | ||
return this.end; | ||
} | ||
|
||
@Override | ||
public DOMDocument getOwnerDocument() { | ||
return parent.getAttr().getOwnerDocument(); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters