mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-15 08:18:55 +00:00
- Fix links to documentation. Signed-off-by: Tamas Miklossy <miklossy@itemis.de>
This commit is contained in:
parent
3b75a71a37
commit
c609328cbb
4 changed files with 16 additions and 16 deletions
|
@ -1,5 +1,5 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2015, 2017 itemis AG (http://www.itemis.eu) and others.
|
||||
* Copyright (c) 2015, 2019 itemis AG (http://www.itemis.eu) 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
|
||||
|
@ -107,7 +107,7 @@ class ContentAssistFragment2 extends AbstractInheritingFragment {
|
|||
def generateXtendProposalProviderStub() {
|
||||
fileAccessFactory.createXtendFile(grammar.proposalProviderClass, '''
|
||||
/**
|
||||
* See https://www.eclipse.org/Xtext/documentation/304_ide_concepts.html#content-assist
|
||||
* See https://www.eclipse.org/Xtext/documentation/310_eclipse_support.html#content-assist
|
||||
* on how to customize the content assistant.
|
||||
*/
|
||||
class «grammar.proposalProviderClass.simpleName» extends «grammar.genProposalProviderClass» {
|
||||
|
@ -118,7 +118,7 @@ class ContentAssistFragment2 extends AbstractInheritingFragment {
|
|||
protected def generateJavaProposalProviderStub() {
|
||||
fileAccessFactory.createJavaFile(grammar.proposalProviderClass, '''
|
||||
/**
|
||||
* See https://www.eclipse.org/Xtext/documentation/304_ide_concepts.html#content-assist
|
||||
* See https://www.eclipse.org/Xtext/documentation/310_eclipse_support.html#content-assist
|
||||
* on how to customize the content assistant.
|
||||
*/
|
||||
public class «grammar.proposalProviderClass.simpleName» extends «grammar.genProposalProviderClass» {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2015, 2016 itemis AG (http://www.itemis.eu) and others.
|
||||
* Copyright (c) 2015, 2019 itemis AG (http://www.itemis.eu) 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
|
||||
|
@ -123,7 +123,7 @@ class LabelProviderFragment2 extends AbstractStubGeneratingFragment {
|
|||
/**
|
||||
* Provides labels for EObjects.
|
||||
*
|
||||
* See https://www.eclipse.org/Xtext/documentation/304_ide_concepts.html#label-provider
|
||||
* See https://www.eclipse.org/Xtext/documentation/310_eclipse_support.html#label-provider
|
||||
*/
|
||||
class «grammar.EObjectLabelProviderClass.simpleName» extends «grammar.EObjectLabelProviderSuperClass» {
|
||||
|
||||
|
@ -150,7 +150,7 @@ class LabelProviderFragment2 extends AbstractStubGeneratingFragment {
|
|||
/**
|
||||
* Provides labels for IEObjectDescriptions and IResourceDescriptions.
|
||||
*
|
||||
* See https://www.eclipse.org/Xtext/documentation/304_ide_concepts.html#label-provider
|
||||
* https://www.eclipse.org/Xtext/documentation/310_eclipse_support.html#label-provider
|
||||
*/
|
||||
class «grammar.descriptionLabelProviderClass.simpleName» extends «grammar.descriptionLabelProviderSuperClass» {
|
||||
|
||||
|
@ -172,7 +172,7 @@ class LabelProviderFragment2 extends AbstractStubGeneratingFragment {
|
|||
/**
|
||||
* Provides labels for EObjects.
|
||||
*
|
||||
* See https://www.eclipse.org/Xtext/documentation/304_ide_concepts.html#label-provider
|
||||
* See https://www.eclipse.org/Xtext/documentation/310_eclipse_support.html#label-provider
|
||||
*/
|
||||
public class «grammar.EObjectLabelProviderClass.simpleName» extends «grammar.EObjectLabelProviderSuperClass» {
|
||||
|
||||
|
@ -201,7 +201,7 @@ class LabelProviderFragment2 extends AbstractStubGeneratingFragment {
|
|||
/**
|
||||
* Provides labels for IEObjectDescriptions and IResourceDescriptions.
|
||||
*
|
||||
* See https://www.eclipse.org/Xtext/documentation/304_ide_concepts.html#label-provider
|
||||
* https://www.eclipse.org/Xtext/documentation/310_eclipse_support.html#label-provider
|
||||
*/
|
||||
public class «grammar.descriptionLabelProviderClass.simpleName» extends «grammar.descriptionLabelProviderSuperClass» {
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Copyright (c) 2015, 2017 itemis AG (http://www.itemis.eu) and others.
|
||||
* Copyright (c) 2015, 2019 itemis AG (http://www.itemis.eu) 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
|
||||
|
@ -155,7 +155,7 @@ public class ContentAssistFragment2 extends AbstractInheritingFragment {
|
|||
_builder.append("/**");
|
||||
_builder.newLine();
|
||||
_builder.append(" ");
|
||||
_builder.append("* See https://www.eclipse.org/Xtext/documentation/304_ide_concepts.html#content-assist");
|
||||
_builder.append("* See https://www.eclipse.org/Xtext/documentation/310_eclipse_support.html#content-assist");
|
||||
_builder.newLine();
|
||||
_builder.append(" ");
|
||||
_builder.append("* on how to customize the content assistant.");
|
||||
|
@ -186,7 +186,7 @@ public class ContentAssistFragment2 extends AbstractInheritingFragment {
|
|||
_builder.append("/**");
|
||||
_builder.newLine();
|
||||
_builder.append(" ");
|
||||
_builder.append("* See https://www.eclipse.org/Xtext/documentation/304_ide_concepts.html#content-assist");
|
||||
_builder.append("* See https://www.eclipse.org/Xtext/documentation/310_eclipse_support.html#content-assist");
|
||||
_builder.newLine();
|
||||
_builder.append(" ");
|
||||
_builder.append("* on how to customize the content assistant.");
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Copyright (c) 2015, 2016 itemis AG (http://www.itemis.eu) and others.
|
||||
* Copyright (c) 2015, 2019 itemis AG (http://www.itemis.eu) 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
|
||||
|
@ -166,7 +166,7 @@ public class LabelProviderFragment2 extends AbstractStubGeneratingFragment {
|
|||
_builder.append("* ");
|
||||
_builder.newLine();
|
||||
_builder.append(" ");
|
||||
_builder.append("* See https://www.eclipse.org/Xtext/documentation/304_ide_concepts.html#label-provider");
|
||||
_builder.append("* See https://www.eclipse.org/Xtext/documentation/310_eclipse_support.html#label-provider");
|
||||
_builder.newLine();
|
||||
_builder.append(" ");
|
||||
_builder.append("*/");
|
||||
|
@ -237,7 +237,7 @@ public class LabelProviderFragment2 extends AbstractStubGeneratingFragment {
|
|||
_builder.append("* ");
|
||||
_builder.newLine();
|
||||
_builder.append(" ");
|
||||
_builder.append("* See https://www.eclipse.org/Xtext/documentation/304_ide_concepts.html#label-provider");
|
||||
_builder.append("* https://www.eclipse.org/Xtext/documentation/310_eclipse_support.html#label-provider");
|
||||
_builder.newLine();
|
||||
_builder.append(" ");
|
||||
_builder.append("*/");
|
||||
|
@ -291,7 +291,7 @@ public class LabelProviderFragment2 extends AbstractStubGeneratingFragment {
|
|||
_builder.append("* ");
|
||||
_builder.newLine();
|
||||
_builder.append(" ");
|
||||
_builder.append("* See https://www.eclipse.org/Xtext/documentation/304_ide_concepts.html#label-provider");
|
||||
_builder.append("* See https://www.eclipse.org/Xtext/documentation/310_eclipse_support.html#label-provider");
|
||||
_builder.newLine();
|
||||
_builder.append(" ");
|
||||
_builder.append("*/");
|
||||
|
@ -365,7 +365,7 @@ public class LabelProviderFragment2 extends AbstractStubGeneratingFragment {
|
|||
_builder.append("* ");
|
||||
_builder.newLine();
|
||||
_builder.append(" ");
|
||||
_builder.append("* See https://www.eclipse.org/Xtext/documentation/304_ide_concepts.html#label-provider");
|
||||
_builder.append("* https://www.eclipse.org/Xtext/documentation/310_eclipse_support.html#label-provider");
|
||||
_builder.newLine();
|
||||
_builder.append(" ");
|
||||
_builder.append("*/");
|
||||
|
|
Loading…
Reference in a new issue