diff --git a/theia-extensions/theia-bosh/bosh/src/browser/bosh-frontend-module.ts b/theia-extensions/theia-bosh/bosh/src/browser/bosh-frontend-module.ts index 37ff8961d..eec52c439 100644 --- a/theia-extensions/theia-bosh/bosh/src/browser/bosh-frontend-module.ts +++ b/theia-extensions/theia-bosh/bosh/src/browser/bosh-frontend-module.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { ContainerModule } from 'inversify'; import { LanguageClientContribution } from '@theia/languages/lib/browser'; import {LanguageGrammarDefinitionContribution} from '@theia/monaco/lib/browser/textmate'; diff --git a/theia-extensions/theia-bosh/bosh/src/browser/bosh-preferences.ts b/theia-extensions/theia-bosh/bosh/src/browser/bosh-preferences.ts index 485243679..d2e2f2385 100644 --- a/theia-extensions/theia-bosh/bosh/src/browser/bosh-preferences.ts +++ b/theia-extensions/theia-bosh/bosh/src/browser/bosh-preferences.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { interfaces } from 'inversify'; import { createPreferenceProxy, PreferenceProxy, PreferenceService, PreferenceContribution, PreferenceSchema } from '@theia/core/lib/browser'; diff --git a/theia-extensions/theia-bosh/bosh/src/browser/cloudconfig-yaml-grammar-contribution.ts b/theia-extensions/theia-bosh/bosh/src/browser/cloudconfig-yaml-grammar-contribution.ts index 94c0a0d3a..4ad19a6ed 100644 --- a/theia-extensions/theia-bosh/bosh/src/browser/cloudconfig-yaml-grammar-contribution.ts +++ b/theia-extensions/theia-bosh/bosh/src/browser/cloudconfig-yaml-grammar-contribution.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { BOSH_CLOUDCONFIG_YAML_LANGUAGE_ID, BOSH_CLOUDCONFIG__YAML_LANGUAGE_NAME diff --git a/theia-extensions/theia-bosh/bosh/src/browser/deployment-yaml-grammar-contribution.ts b/theia-extensions/theia-bosh/bosh/src/browser/deployment-yaml-grammar-contribution.ts index 9eeb64a12..80549f61e 100644 --- a/theia-extensions/theia-bosh/bosh/src/browser/deployment-yaml-grammar-contribution.ts +++ b/theia-extensions/theia-bosh/bosh/src/browser/deployment-yaml-grammar-contribution.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { BOSH_DEPLOYMENT_YAML_LANGUAGE_ID, BOSH_DEPLOYMENT_YAML_LANGUAGE_NAME diff --git a/theia-extensions/theia-bosh/bosh/src/browser/language-client-contribution.ts b/theia-extensions/theia-bosh/bosh/src/browser/language-client-contribution.ts index fa60d9219..9ddcdf728 100644 --- a/theia-extensions/theia-bosh/bosh/src/browser/language-client-contribution.ts +++ b/theia-extensions/theia-bosh/bosh/src/browser/language-client-contribution.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { injectable, inject } from 'inversify'; import { Workspace, Languages, LanguageClientFactory } from '@theia/languages/lib/browser'; import { StsLanguageClientContribution } from '@pivotal-tools/theia-languageclient/lib/browser/language-client-contribution'; diff --git a/theia-extensions/theia-bosh/bosh/src/common/index.ts b/theia-extensions/theia-bosh/bosh/src/common/index.ts index a1242131f..262119c46 100644 --- a/theia-extensions/theia-bosh/bosh/src/common/index.ts +++ b/theia-extensions/theia-bosh/bosh/src/common/index.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ export const BOSH_SERVER_ID = 'bosh-yaml'; export const BOSH_SERVER_NAME = 'Bosh YAML'; diff --git a/theia-extensions/theia-bosh/bosh/src/node/bosh-backend-module.ts b/theia-extensions/theia-bosh/bosh/src/node/bosh-backend-module.ts index aedbeb170..ecb685cd1 100644 --- a/theia-extensions/theia-bosh/bosh/src/node/bosh-backend-module.ts +++ b/theia-extensions/theia-bosh/bosh/src/node/bosh-backend-module.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { ContainerModule } from "inversify"; import { LanguageServerContribution } from "@theia/languages/lib/node"; import { BoshLanguageContribution } from './bosh-language-contribution'; diff --git a/theia-extensions/theia-bosh/bosh/src/node/bosh-language-contribution.ts b/theia-extensions/theia-bosh/bosh/src/node/bosh-language-contribution.ts index 9d960bbdc..883d21cdd 100644 --- a/theia-extensions/theia-bosh/bosh/src/node/bosh-language-contribution.ts +++ b/theia-extensions/theia-bosh/bosh/src/node/bosh-language-contribution.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import * as path from 'path'; import { injectable } from 'inversify'; import { StsLanguageServerContribution } from '@pivotal-tools/theia-languageclient/lib/node/language-server-contribution'; diff --git a/theia-extensions/theia-cf-manifest-yaml/cf-manifest-yaml/src/browser/cf-manifest-yaml-frontend-module.ts b/theia-extensions/theia-cf-manifest-yaml/cf-manifest-yaml/src/browser/cf-manifest-yaml-frontend-module.ts index e9cc3299e..93ab14303 100644 --- a/theia-extensions/theia-cf-manifest-yaml/cf-manifest-yaml/src/browser/cf-manifest-yaml-frontend-module.ts +++ b/theia-extensions/theia-cf-manifest-yaml/cf-manifest-yaml/src/browser/cf-manifest-yaml-frontend-module.ts @@ -1,7 +1,13 @@ -/** - * Generated using theia-extension-generator - */ - +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { CfManifestYamlClientContribution } from './language-client-contribution'; import { LanguageClientContribution } from '@theia/languages/lib/browser'; import { ContainerModule } from 'inversify'; diff --git a/theia-extensions/theia-cf-manifest-yaml/cf-manifest-yaml/src/browser/language-client-contribution.ts b/theia-extensions/theia-cf-manifest-yaml/cf-manifest-yaml/src/browser/language-client-contribution.ts index 54feaaa9e..a12a9cad2 100644 --- a/theia-extensions/theia-cf-manifest-yaml/cf-manifest-yaml/src/browser/language-client-contribution.ts +++ b/theia-extensions/theia-cf-manifest-yaml/cf-manifest-yaml/src/browser/language-client-contribution.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { inject, injectable } from 'inversify'; import { Workspace, Languages, LanguageClientFactory } from '@theia/languages/lib/browser'; import { CF_MANIFEST_YAML_LANGUAGE_ID, CF_MANIFEST_YAML_LANGUAGE_NAME } from '../common'; diff --git a/theia-extensions/theia-cf-manifest-yaml/cf-manifest-yaml/src/browser/manifest-yaml-grammar-contribution.ts b/theia-extensions/theia-cf-manifest-yaml/cf-manifest-yaml/src/browser/manifest-yaml-grammar-contribution.ts index 6ce40b433..4986461d1 100644 --- a/theia-extensions/theia-cf-manifest-yaml/cf-manifest-yaml/src/browser/manifest-yaml-grammar-contribution.ts +++ b/theia-extensions/theia-cf-manifest-yaml/cf-manifest-yaml/src/browser/manifest-yaml-grammar-contribution.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { CF_MANIFEST_YAML_LANGUAGE_ID, CF_MANIFEST_YAML_LANGUAGE_NAME diff --git a/theia-extensions/theia-cf-manifest-yaml/cf-manifest-yaml/src/common/index.ts b/theia-extensions/theia-cf-manifest-yaml/cf-manifest-yaml/src/common/index.ts index bfc03b95e..1621ede59 100644 --- a/theia-extensions/theia-cf-manifest-yaml/cf-manifest-yaml/src/common/index.ts +++ b/theia-extensions/theia-cf-manifest-yaml/cf-manifest-yaml/src/common/index.ts @@ -1,2 +1,12 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ export const CF_MANIFEST_YAML_LANGUAGE_ID = 'manifest-yaml'; export const CF_MANIFEST_YAML_LANGUAGE_NAME = 'CF Manifest YAML'; \ No newline at end of file diff --git a/theia-extensions/theia-cf-manifest-yaml/cf-manifest-yaml/src/node/cf-manifest-yaml-backend-module.ts b/theia-extensions/theia-cf-manifest-yaml/cf-manifest-yaml/src/node/cf-manifest-yaml-backend-module.ts index 376ae7935..0adce5e4a 100644 --- a/theia-extensions/theia-cf-manifest-yaml/cf-manifest-yaml/src/node/cf-manifest-yaml-backend-module.ts +++ b/theia-extensions/theia-cf-manifest-yaml/cf-manifest-yaml/src/node/cf-manifest-yaml-backend-module.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { ContainerModule } from "inversify"; import { LanguageServerContribution } from "@theia/languages/lib/node"; import { CfManifestYamlContribution } from './cf-manifest-yaml-contribution'; diff --git a/theia-extensions/theia-cf-manifest-yaml/cf-manifest-yaml/src/node/cf-manifest-yaml-contribution.ts b/theia-extensions/theia-cf-manifest-yaml/cf-manifest-yaml/src/node/cf-manifest-yaml-contribution.ts index 58e49e3de..fd0523716 100644 --- a/theia-extensions/theia-cf-manifest-yaml/cf-manifest-yaml/src/node/cf-manifest-yaml-contribution.ts +++ b/theia-extensions/theia-cf-manifest-yaml/cf-manifest-yaml/src/node/cf-manifest-yaml-contribution.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import * as path from 'path'; import { injectable } from 'inversify'; import { CF_MANIFEST_YAML_LANGUAGE_ID, CF_MANIFEST_YAML_LANGUAGE_NAME } from '../common'; diff --git a/theia-extensions/theia-commons/src/browser/ide-helper.ts b/theia-extensions/theia-commons/src/browser/ide-helper.ts index bf804ec2c..d58528653 100644 --- a/theia-extensions/theia-commons/src/browser/ide-helper.ts +++ b/theia-extensions/theia-commons/src/browser/ide-helper.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import {EditorManager, TextEditor} from '@theia/editor/lib/browser'; import {DiffUris} from '@theia/core/lib/browser'; import URI from '@theia/core/lib/common/uri'; diff --git a/theia-extensions/theia-commons/src/browser/java-properties-grammar-contribution.ts b/theia-extensions/theia-commons/src/browser/java-properties-grammar-contribution.ts index 58c79b0ab..c8063f65d 100644 --- a/theia-extensions/theia-commons/src/browser/java-properties-grammar-contribution.ts +++ b/theia-extensions/theia-commons/src/browser/java-properties-grammar-contribution.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { JAVA_PROPERTIES_LANGUAGE_ID, JAVA_PROPERTIES_LANGUAGE_GRAMMAR_SCOPE, diff --git a/theia-extensions/theia-commons/src/browser/language-client-contribution.ts b/theia-extensions/theia-commons/src/browser/language-client-contribution.ts index d7b25e588..101547a7e 100644 --- a/theia-extensions/theia-commons/src/browser/language-client-contribution.ts +++ b/theia-extensions/theia-commons/src/browser/language-client-contribution.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { injectable, inject, postConstruct } from 'inversify'; import { BaseLanguageClientContribution, Workspace, Languages, LanguageClientFactory } from '@theia/languages/lib/browser'; import { PreferenceProxy } from '@theia/core/lib/browser'; diff --git a/theia-extensions/theia-commons/src/browser/language-client-frontend-module.ts b/theia-extensions/theia-commons/src/browser/language-client-frontend-module.ts index 11142f43a..30513ec3c 100644 --- a/theia-extensions/theia-commons/src/browser/language-client-frontend-module.ts +++ b/theia-extensions/theia-commons/src/browser/language-client-frontend-module.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { ContainerModule } from 'inversify'; import { ProgressService } from './progress-service'; import { MoveCursorService } from './move-cursor-service'; diff --git a/theia-extensions/theia-commons/src/browser/monaco.d.ts b/theia-extensions/theia-commons/src/browser/monaco.d.ts index 87fe96160..e8da2abeb 100644 --- a/theia-extensions/theia-commons/src/browser/monaco.d.ts +++ b/theia-extensions/theia-commons/src/browser/monaco.d.ts @@ -1 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ /// diff --git a/theia-extensions/theia-commons/src/browser/move-cursor-service.ts b/theia-extensions/theia-commons/src/browser/move-cursor-service.ts index 53e51dfde..e4bfcf123 100644 --- a/theia-extensions/theia-commons/src/browser/move-cursor-service.ts +++ b/theia-extensions/theia-commons/src/browser/move-cursor-service.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { injectable, inject } from 'inversify'; import { Position } from 'vscode-languageserver-types'; import { CommandRegistry } from '@theia/core/lib/common'; diff --git a/theia-extensions/theia-commons/src/browser/progress-service.ts b/theia-extensions/theia-commons/src/browser/progress-service.ts index e78130fe8..58416abd1 100644 --- a/theia-extensions/theia-commons/src/browser/progress-service.ts +++ b/theia-extensions/theia-commons/src/browser/progress-service.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { injectable, inject } from 'inversify'; import { CommandRegistry } from '@theia/core/lib/common'; import { ILanguageClient } from '@theia/languages/lib/browser'; diff --git a/theia-extensions/theia-commons/src/browser/yaml-grammar-contribution.ts b/theia-extensions/theia-commons/src/browser/yaml-grammar-contribution.ts index d4477dad2..0f47ab10e 100644 --- a/theia-extensions/theia-commons/src/browser/yaml-grammar-contribution.ts +++ b/theia-extensions/theia-commons/src/browser/yaml-grammar-contribution.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import {LanguageGrammarDefinitionContribution, TextmateRegistry} from '@theia/monaco/lib/browser/textmate'; import {injectable} from 'inversify'; import {YAML_LANGUAGE_ID, YAML_LANGUAGE_GRAMMAR_SCOPE, YAML_CONFIG, YAML_TM_GRAMMAR} from '../common'; diff --git a/theia-extensions/theia-commons/src/common/index.ts b/theia-extensions/theia-commons/src/common/index.ts index 7ed9095c7..985deb368 100644 --- a/theia-extensions/theia-commons/src/common/index.ts +++ b/theia-extensions/theia-commons/src/common/index.ts @@ -1,2 +1,12 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ export * from './languages'; export * from './utils'; \ No newline at end of file diff --git a/theia-extensions/theia-commons/src/common/languages.ts b/theia-extensions/theia-commons/src/common/languages.ts index 0e84b279a..786012a65 100644 --- a/theia-extensions/theia-commons/src/common/languages.ts +++ b/theia-extensions/theia-commons/src/common/languages.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ export const JAVA_PROPERTIES_LANGUAGE_ID = 'java-properties'; export const JAVA_PROPERTIES_LANGUAGE_GRAMMAR_SCOPE = 'source.java-properties'; diff --git a/theia-extensions/theia-commons/src/common/utils.ts b/theia-extensions/theia-commons/src/common/utils.ts index 71621bbeb..e387e3845 100644 --- a/theia-extensions/theia-commons/src/common/utils.ts +++ b/theia-extensions/theia-commons/src/common/utils.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ export class Utils { private static setNestedValue(properties: string[], value: any, obj: any){ diff --git a/theia-extensions/theia-commons/src/node/language-server-contribution.ts b/theia-extensions/theia-commons/src/node/language-server-contribution.ts index be773a488..c7789e185 100644 --- a/theia-extensions/theia-commons/src/node/language-server-contribution.ts +++ b/theia-extensions/theia-commons/src/node/language-server-contribution.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import * as path from 'path'; import * as glob from 'glob'; import { injectable } from 'inversify'; diff --git a/theia-extensions/theia-concourse/concourse/src/browser/concourse-frontend-module.ts b/theia-extensions/theia-concourse/concourse/src/browser/concourse-frontend-module.ts index ddac53ba2..7a6ddbef9 100644 --- a/theia-extensions/theia-concourse/concourse/src/browser/concourse-frontend-module.ts +++ b/theia-extensions/theia-concourse/concourse/src/browser/concourse-frontend-module.ts @@ -1,7 +1,13 @@ -/** - * Generated using theia-extension-generator - */ - +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { ContainerModule } from "inversify"; import { ConcourseClientContribution } from './language-client-contribution'; import { LanguageClientContribution } from '@theia/languages/lib/browser'; diff --git a/theia-extensions/theia-concourse/concourse/src/browser/language-client-contribution.ts b/theia-extensions/theia-concourse/concourse/src/browser/language-client-contribution.ts index 93642c02f..cdadac28e 100644 --- a/theia-extensions/theia-concourse/concourse/src/browser/language-client-contribution.ts +++ b/theia-extensions/theia-concourse/concourse/src/browser/language-client-contribution.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { injectable, inject } from 'inversify'; import { Workspace, Languages, LanguageClientFactory } from '@theia/languages/lib/browser'; import { StsLanguageClientContribution } from '@pivotal-tools/theia-languageclient/lib/browser/language-client-contribution'; diff --git a/theia-extensions/theia-concourse/concourse/src/browser/pipeline-yaml-grammar-contribution.ts b/theia-extensions/theia-concourse/concourse/src/browser/pipeline-yaml-grammar-contribution.ts index 31da5ddd4..d7c74e039 100644 --- a/theia-extensions/theia-concourse/concourse/src/browser/pipeline-yaml-grammar-contribution.ts +++ b/theia-extensions/theia-concourse/concourse/src/browser/pipeline-yaml-grammar-contribution.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { CONCOURSE_PIPELINE_YAML_LANGUAGE_ID, CONCOURSE_PIPELINE_YAML_LANGUAGE_NAME diff --git a/theia-extensions/theia-concourse/concourse/src/browser/task-yaml-grammar-contribution.ts b/theia-extensions/theia-concourse/concourse/src/browser/task-yaml-grammar-contribution.ts index ee540656b..381124e40 100644 --- a/theia-extensions/theia-concourse/concourse/src/browser/task-yaml-grammar-contribution.ts +++ b/theia-extensions/theia-concourse/concourse/src/browser/task-yaml-grammar-contribution.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { CONCOURSE_TASK_YAML_LANGUAGE_ID, CONCOURSE_TASK_YAML_LANGUAGE_NAME diff --git a/theia-extensions/theia-concourse/concourse/src/common/index.ts b/theia-extensions/theia-concourse/concourse/src/common/index.ts index 9863f022d..379f1c91a 100644 --- a/theia-extensions/theia-concourse/concourse/src/common/index.ts +++ b/theia-extensions/theia-concourse/concourse/src/common/index.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ export const CONCOURSE_SERVER_ID = 'concourse-yaml'; export const CONCOURSE_SERVER_NAME = 'Concourse YAML'; diff --git a/theia-extensions/theia-concourse/concourse/src/node/concourse-backend-module.ts b/theia-extensions/theia-concourse/concourse/src/node/concourse-backend-module.ts index 2f7cc3800..9425e0af1 100644 --- a/theia-extensions/theia-concourse/concourse/src/node/concourse-backend-module.ts +++ b/theia-extensions/theia-concourse/concourse/src/node/concourse-backend-module.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { ContainerModule } from "inversify"; import { LanguageServerContribution } from "@theia/languages/lib/node"; import { ConcourseLanguageContribution } from './concourse-language-contribution'; diff --git a/theia-extensions/theia-concourse/concourse/src/node/concourse-language-contribution.ts b/theia-extensions/theia-concourse/concourse/src/node/concourse-language-contribution.ts index c9a52464b..5c9205038 100644 --- a/theia-extensions/theia-concourse/concourse/src/node/concourse-language-contribution.ts +++ b/theia-extensions/theia-concourse/concourse/src/node/concourse-language-contribution.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import * as path from 'path'; import { injectable } from 'inversify'; import { StsLanguageServerContribution } from '@pivotal-tools/theia-languageclient/lib/node/language-server-contribution'; diff --git a/theia-extensions/theia-spring-boot/spring-boot/src/browser/boot-preferences.ts b/theia-extensions/theia-spring-boot/spring-boot/src/browser/boot-preferences.ts index 7c9345618..6b93474dc 100644 --- a/theia-extensions/theia-spring-boot/spring-boot/src/browser/boot-preferences.ts +++ b/theia-extensions/theia-spring-boot/spring-boot/src/browser/boot-preferences.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { interfaces } from 'inversify'; import { createPreferenceProxy, PreferenceProxy, PreferenceService, PreferenceContribution, PreferenceSchema } from '@theia/core/lib/browser'; diff --git a/theia-extensions/theia-spring-boot/spring-boot/src/browser/boot-properties-grammar-contribution.ts b/theia-extensions/theia-spring-boot/spring-boot/src/browser/boot-properties-grammar-contribution.ts index 32c1bf626..433ea1a4f 100644 --- a/theia-extensions/theia-spring-boot/spring-boot/src/browser/boot-properties-grammar-contribution.ts +++ b/theia-extensions/theia-spring-boot/spring-boot/src/browser/boot-properties-grammar-contribution.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { BOOT_PROPERTIES_LANGUAGE_ID, BOOT_PROPERTIES_LANGUAGE_NAME, diff --git a/theia-extensions/theia-spring-boot/spring-boot/src/browser/boot-yaml-grammar-contribution.ts b/theia-extensions/theia-spring-boot/spring-boot/src/browser/boot-yaml-grammar-contribution.ts index e5e930586..c8c497818 100644 --- a/theia-extensions/theia-spring-boot/spring-boot/src/browser/boot-yaml-grammar-contribution.ts +++ b/theia-extensions/theia-spring-boot/spring-boot/src/browser/boot-yaml-grammar-contribution.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { BOOT_PROPERTIES_YAML_LANGUAGE_ID, BOOT_PROPERTIES_YAML_LANGUAGE_NAME diff --git a/theia-extensions/theia-spring-boot/spring-boot/src/browser/classpath-service.ts b/theia-extensions/theia-spring-boot/spring-boot/src/browser/classpath-service.ts index 6b6836356..e520693db 100644 --- a/theia-extensions/theia-spring-boot/spring-boot/src/browser/classpath-service.ts +++ b/theia-extensions/theia-spring-boot/spring-boot/src/browser/classpath-service.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { injectable, inject } from 'inversify'; import { CommandRegistry } from '@theia/core/lib/common'; import { ILanguageClient } from '@theia/languages/lib/browser'; diff --git a/theia-extensions/theia-spring-boot/spring-boot/src/browser/codelens-service.ts b/theia-extensions/theia-spring-boot/spring-boot/src/browser/codelens-service.ts index 381fc7642..fe9464370 100644 --- a/theia-extensions/theia-spring-boot/spring-boot/src/browser/codelens-service.ts +++ b/theia-extensions/theia-spring-boot/spring-boot/src/browser/codelens-service.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { injectable } from 'inversify'; import * as deepEqual from 'deep-equal'; import {HighlightParams} from './highlight-service'; diff --git a/theia-extensions/theia-spring-boot/spring-boot/src/browser/highlight-service.ts b/theia-extensions/theia-spring-boot/spring-boot/src/browser/highlight-service.ts index 2d22aaf15..ce0872528 100644 --- a/theia-extensions/theia-spring-boot/spring-boot/src/browser/highlight-service.ts +++ b/theia-extensions/theia-spring-boot/spring-boot/src/browser/highlight-service.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { injectable, inject } from 'inversify'; import { VersionedTextDocumentIdentifier, Range, CodeLens } from 'vscode-languageserver-types'; import { EditorDecorationStyle, TextEditor, DeltaDecorationParams, EditorManager } from '@theia/editor/lib/browser'; diff --git a/theia-extensions/theia-spring-boot/spring-boot/src/browser/language-client-contribution.ts b/theia-extensions/theia-spring-boot/spring-boot/src/browser/language-client-contribution.ts index e5bc63b24..af1e17282 100644 --- a/theia-extensions/theia-spring-boot/spring-boot/src/browser/language-client-contribution.ts +++ b/theia-extensions/theia-spring-boot/spring-boot/src/browser/language-client-contribution.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { injectable, inject } from 'inversify'; import { Workspace, Languages, LanguageClientFactory } from '@theia/languages/lib/browser'; import { diff --git a/theia-extensions/theia-spring-boot/spring-boot/src/browser/spring-boot-frontend-module.ts b/theia-extensions/theia-spring-boot/spring-boot/src/browser/spring-boot-frontend-module.ts index ced653250..b84294023 100644 --- a/theia-extensions/theia-spring-boot/spring-boot/src/browser/spring-boot-frontend-module.ts +++ b/theia-extensions/theia-spring-boot/spring-boot/src/browser/spring-boot-frontend-module.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import '../../images/boot-icon.png'; import { SpringBootClientContribution} from './language-client-contribution'; import { LanguageClientContribution } from '@theia/languages/lib/browser'; diff --git a/theia-extensions/theia-spring-boot/spring-boot/src/common/index.ts b/theia-extensions/theia-spring-boot/spring-boot/src/common/index.ts index ac2fe7f73..1893b9afd 100644 --- a/theia-extensions/theia-spring-boot/spring-boot/src/common/index.ts +++ b/theia-extensions/theia-spring-boot/spring-boot/src/common/index.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ export const SPRING_BOOT_SERVER_ID = 'spring-boot'; export const SPRING_BOOT_SERVER_NAME = 'Spring-Boot'; diff --git a/theia-extensions/theia-spring-boot/spring-boot/src/node/java-extension.ts b/theia-extensions/theia-spring-boot/spring-boot/src/node/java-extension.ts index dc2e20a56..88cc5411e 100644 --- a/theia-extensions/theia-spring-boot/spring-boot/src/node/java-extension.ts +++ b/theia-extensions/theia-spring-boot/spring-boot/src/node/java-extension.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import {JavaExtensionContribution} from "@theia/java/lib/node"; import * as path from 'path'; import { injectable } from 'inversify'; diff --git a/theia-extensions/theia-spring-boot/spring-boot/src/node/spring-boot-backend-module.ts b/theia-extensions/theia-spring-boot/spring-boot/src/node/spring-boot-backend-module.ts index e69719218..65bcd18fa 100644 --- a/theia-extensions/theia-spring-boot/spring-boot/src/node/spring-boot-backend-module.ts +++ b/theia-extensions/theia-spring-boot/spring-boot/src/node/spring-boot-backend-module.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import { ContainerModule } from 'inversify'; import { LanguageServerContribution } from '@theia/languages/lib/node'; import { SpringBootLsContribution } from './spring-boot-ls-contribution'; diff --git a/theia-extensions/theia-spring-boot/spring-boot/src/node/spring-boot-ls-contribution.ts b/theia-extensions/theia-spring-boot/spring-boot/src/node/spring-boot-ls-contribution.ts index 10398a962..2f39e6ddf 100644 --- a/theia-extensions/theia-spring-boot/spring-boot/src/node/spring-boot-ls-contribution.ts +++ b/theia-extensions/theia-spring-boot/spring-boot/src/node/spring-boot-ls-contribution.ts @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2019 Pivotal, Inc. + * 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: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ import * as path from 'path'; import { injectable } from 'inversify'; import { SPRING_BOOT_SERVER_ID, SPRING_BOOT_SERVER_NAME } from '../common';