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
108 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
58 changes: 58 additions & 0 deletions
58
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,58 @@ | ||
/** | ||
* 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; | ||
|
||
public class SchemaLocationHint implements DOMRange { | ||
|
||
private final int start, end; | ||
|
||
private final String hint; | ||
|
||
private final DOMDocument document; | ||
|
||
public SchemaLocationHint(int start, int end, String hint, DOMDocument document) { | ||
this.start = start; | ||
this.end = end; | ||
this.hint = hint; | ||
this.document = document; | ||
} | ||
|
||
/** | ||
* Get the loation hint that was assigned to this | ||
*/ | ||
public String getHint() { | ||
return this.hint; | ||
} | ||
|
||
/** | ||
* Get the start character of this SchemaLocationHint in the document. | ||
*/ | ||
@Override | ||
public int getStart() { | ||
return this.start; | ||
} | ||
|
||
/** | ||
* Get the end character of this SchemaLocationHint in the document. | ||
*/ | ||
@Override | ||
public int getEnd() { | ||
return this.end; | ||
} | ||
|
||
@Override | ||
public DOMDocument getOwnerDocument() { | ||
return document; | ||
} | ||
|
||
} |
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